Enum ParseErrorType
Specifies the type of parsing error encountered in Alang expressions."/>
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public enum ParseErrorType
Fields
Name | Description |
---|---|
EmptyInput | Indicates that the input was empty or white-space only. |
ExpectedBeginExpressionOrEOI | Indicates that a new subexpression or end-of-input was expected but not found. |
MissingClosingParenthesis | Indicates that a closing parenthesis was expected but not found. |
MissingRightOperand | Indicates that a right operand was expected after a binary operator but was not found. |
UnexpectedClosingParenthesis | Indicates that an unexpected closing parenthesis was encountered. |
UnexpectedOperator | Indicates that an unexpected operator was encountered. |