Enum ParseErrorCode
- Namespace
- LogicalOptimizer
- Assembly
- LogicalOptimizer.Core.dll
Stable, machine-readable classification of a formula parse failure.
public enum ParseErrorCode
Fields
EmptyExpression = 0The input was empty or whitespace only.
ExpectedToken = 5A specific token was required here (see Expected).
InvalidConstant = 2A constant was malformed (constants are the single digits 0 or 1).
NestingTooDeep = 7The expression nested more deeply than the parser allows.
UnexpectedCharacter = 1A character that is not part of the grammar was found.
UnexpectedEndOfInput = 6The input ended while more was required (e.g. an unclosed parenthesis).
UnexpectedToken = 4A token was valid on its own but not allowed at this position.
VariableStartsWithDigit = 3A variable name started with a digit.