pushStack method

dynamic pushStack(
  1. dynamic node
)

Implementation

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