(parent)
| 595 | this.push(part.clone(this)); |
| 596 | } |
| 597 | clone(parent) { |
| 598 | const c = new _a(this.type, parent); |
| 599 | for (const p of this.#parts) { |
| 600 | c.copyIn(p); |
| 601 | } |
| 602 | return c; |
| 603 | } |
| 604 | static #parseAST(str, ast, pos, opt, extDepth) { |
| 605 | const maxDepth = opt.maxExtglobRecursion ?? 2; |
| 606 | let escaping = false; |
no test coverage detected