(body?: Block, nodeCount?: number)
| 696 | |
| 697 | // start self-balancing block |
| 698 | block(body?: Block, nodeCount?: number): CodeGen { |
| 699 | this._blockStarts.push(this._nodes.length) |
| 700 | if (body) this.code(body).endBlock(nodeCount) |
| 701 | return this |
| 702 | } |
| 703 | |
| 704 | // end the current self-balancing block |
| 705 | endBlock(nodeCount?: number): CodeGen { |
no test coverage detected