Push the current scope; call before descending into a `Function` body.
()
| 1826 | stack: [], |
| 1827 | /** Push the current scope; call before descending into a `Function` body. */ |
| 1828 | push() { |
| 1829 | this.stack.push((this.active ? 1 : 0) | (this.emit ? 2 : 0)); |
| 1830 | }, |
| 1831 | /** Pop the saved scope; call when leaving a `Function` body. */ |
| 1832 | pop() { |
| 1833 | const s = /** @type {number} */ (this.stack.pop()); |
no outgoing calls