FloatVal constructor

FloatVal(
  1. String value
)

Constructs a floating-point value node by parsing the string representation.

Parameters:

  • value: String representation of the floating-point value (e.g., "3.14")

Throws:

Implementation

FloatVal(String value) : super(double.parse(value), []);