()
| 367 | } |
| 368 | |
| 369 | addContextToParseTree() { |
| 370 | // add current context to parent if we have a parent |
| 371 | if (this._ctx.parentCtx !== null) { |
| 372 | this._ctx.parentCtx.addChild(this._ctx); |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * Always called by generated parsers upon entry to a rule. Access field |