nodeValue property
override
The primary value associated with this node (varies by node type).
Examples:
- For IdentifierNode: the variable name as a String
- For IntVal: the numeric value as an int
- For BinOp: the operator as a MathOp enum value
Implementation
@override
Node get nodeValue => children[1];