pushStack method
dynamic
pushStack(
- dynamic node
Implementation
pushStack(node) {
this.nodeStack.add(node);
this.currentIndent += 1;
}
pushStack(node) {
this.nodeStack.add(node);
this.currentIndent += 1;
}