pushStack method

dynamic pushStack(
  1. dynamic node
)

Implementation

pushStack(node) {
  nodeStack.add(node);
  currentIndent += 1;
}