(nodeType)
| 230 | |
| 231 | // Pushes a new node with the specified type onto the stack and invokes 'setup'. |
| 232 | push(nodeType) { |
| 233 | this.node = this.makeNode(nodeType, this.node); |
| 234 | this.doEvent("onSetup"); |
| 235 | } |
| 236 | |
| 237 | // Sets the text property of the current node and invokes 'setup'. |
| 238 | setText(text) { |
no test coverage detected