| 32 | if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){ |
| 33 | for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)} |
| 34 | walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){ |
| 35 | return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t), |
| 36 | t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){ |
| 37 | "string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{ |
| 38 | l._collapse(e)})))}}class _ extends l{constructor(e){super(),this.options=e} |
| 39 | addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())} |