* The traverser to repeat.
()
| 3653 | * The traverser to repeat. |
| 3654 | */ |
| 3655 | protected get repeatTraverser() { |
| 3656 | if (this.#repeatTraverser === undefined) { |
| 3657 | return (this.#repeatTraverser = createTraverser(this.steps)); |
| 3658 | } |
| 3659 | return this.#repeatTraverser; |
| 3660 | } |
| 3661 | |
| 3662 | /** |
| 3663 | * The traverser that will stop the repeat when matched. |
nothing calls this directly
no test coverage detected