Set of token types used as operators and delimiters
Source position: fpexprpars.pp line 43
const ttDelimiters = [ttPlus, ttMinus, ttLessThan, ttLargerThan, ttEqual, ttDiv, ttMul, ttLeft, ttRight, ttLessThanEqual, ttLargerThanEqual, ttunequal, ttPower]; |
This constant set contains all TTokenType values that represent operators and structural delimiters in expressions. It includes arithmetic operators, comparison operators, parentheses, and the power operator.
The set is used by the parser and scanner to identify tokens that serve as operators or structural elements, allowing the parser to distinguish between operands and operators during expression analysis.
|
Set of token types used for comparison operations |