Get the result type for integer to float conversion
Source position: fpexprpars.pp line 403
public function TIntToFloatNode.NodeType: TResultType; override; |
Returns float as the result type
The NodeType method returns rtFloat to indicate that this conversion node produces floating-point results. It overrides the base class method to provide type-specific result type information.
The method is used by the expression parser to determine the result type of expressions that include this conversion node, enabling proper type checking and result handling.