()
| 4415 | } |
| 4416 | |
| 4417 | protected get matchTraverser() { |
| 4418 | if (this.#matchTraverser === undefined) { |
| 4419 | return (this.#matchTraverser = createTraverser(this.steps)); |
| 4420 | } |
| 4421 | return this.#matchTraverser; |
| 4422 | } |
| 4423 | |
| 4424 | public *traverse( |
| 4425 | source: GraphSource<any>, |
nothing calls this directly
no test coverage detected