children property
final
Child nodes that form the structure of this node.
The children represent sub-expressions, sub-statements, or other syntactic elements that make up this node. For example:
- Binary operations have two children (left and right operands)
- If statements have condition, then-block, and optionally else-block children
- Function calls have the function identifier and argument list children
Implementation
final List<Node> children;