Set of token types used for comparison operations
Source position: fpexprpars.pp line 46
const ttComparisons = [ttLargerThan, ttLessthan, ttLargerThanEqual, ttLessthanEqual, ttEqual, ttUnequal]; |
This constant set contains all TTokenType values that represent comparison operators in expressions. It includes equality, inequality, and ordering operators such as equal, unequal, less than, greater than, less than or equal, and greater than or equal.
The set is used by the parser to identify comparison operations and ensure proper precedence handling when evaluating expressions.
|
Set of token types used as operators and delimiters |