IntVal constructor

IntVal(
  1. String value
)

Constructs an integer value node by parsing the string representation.

Parameters:

  • value: String representation of the integer value (e.g., "42")

Throws:

Implementation

IntVal(String value) : super(int.parse(value), []);