Enum ParseErrorReason
Reason for parsing errors in Alang expressions. Specifies the reason for a AlangFormatException.
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public enum ParseErrorReason
Fields
Name | Description |
---|---|
EmptyInput | Indicates that the input was empty or white-space only. |
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. |