Source position: fpexprpars.pp line 91
type TFPExpressionResult = record |
ResString: string; |
case ResultType: TResultType of |
rtBoolean: ( |
ResBoolean: Boolean; |
); |
rtInteger: ( |
ResInteger: Int64; |
); |
rtFloat: ( |
ResFloat: TExprFloat; |
); |
rtCurrency: ( |
ResCurrency: Currency; |
); |
rtDateTime: ( |
ResDateTime: TDatetime; |
); |
rtString: ( |
); |
end; |