IntVal constructor
- String value
Constructs an integer value node by parsing the string representation.
Parameters:
value
: String representation of the integer value (e.g., "42")
Throws:
- FormatException if the string cannot be parsed as an integer
Implementation
IntVal(String value) : super(int.parse(value), []);