Type representing different kinds of identifiers in expressions
Source position: fpexprpars.pp line 491
type TIdentifierType = ( |
||
itVariable, |
|
Variable identifier type |
itFunctionCallBack, |
|
Function callback identifier type |
itFunctionHandler, |
|
Function event handler identifier type |
itFunctionNode |
|
Function node identifier type |
); |
This enumeration defines the different types of identifiers that can be encountered in expressions. It distinguishes between variables and functions to enable proper handling and resolution during expression parsing and evaluation.