IndexedIdentifierNode constructor
Constructs an indexed identifier with an array name and index expression.
Parameters:
value
: The name of the array variableindex
: The expression that evaluates to the array index
Implementation
IndexedIdentifierNode(super.value, Node<dynamic, LangVal> index) {
children.add(index);
}