BlockNode constructor

BlockNode(
  1. List<Node> children
)

Constructs a block node with the given child statements.

Parameters:

  • children: List of statements or expressions to execute in this block

Implementation

BlockNode(List<Node> children) : super(null, children);