Array type for function parameters in expressions
Source position: fpexprpars.pp line 109
type TExprParameterArray = array of TFPExpressionResult; |
This array type holds the parameter values passed to functions during expression evaluation. Each element is a TFPExpressionResult containing both the value and type information for one parameter.
The array is dynamically sized to accommodate functions with varying numbers of parameters. Functions use this array to access their input parameters and determine their types during evaluation.