Pop the saved scope; call when leaving a `Function` body.
()
| 1830 | }, |
| 1831 | /** Pop the saved scope; call when leaving a `Function` body. */ |
| 1832 | pop() { |
| 1833 | const s = /** @type {number} */ (this.stack.pop()); |
| 1834 | this.active = (s & 1) !== 0; |
| 1835 | this.emit = (s & 2) !== 0; |
| 1836 | } |
| 1837 | }; |
| 1838 | // Nearest enclosing declaration / at-rule / qualified-rule, set by each structural enter; the Url / Function / Ident / Comma visitors read it (via `urlActive` / `localGlobalActive` / `icssActive`) to decide value handling from the node hierarchy instead of carrying precomputed flags. |
| 1839 | /** @type {AstNode | undefined} */ |
no outgoing calls
no test coverage detected