(part)
| 589 | return this.#parentIndex === pl - 1; |
| 590 | } |
| 591 | copyIn(part) { |
| 592 | if (typeof part === "string") |
| 593 | this.push(part); |
| 594 | else |
| 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) { |