()
| 5449 | } |
| 5450 | |
| 5451 | protected get foreachTraverser() { |
| 5452 | if (this.#foreachTraverser === undefined) { |
| 5453 | if (this.steps.length === 0) { |
| 5454 | return undefined; |
| 5455 | } |
| 5456 | return (this.#foreachTraverser = createTraverser(this.steps)); |
| 5457 | } |
| 5458 | return this.#foreachTraverser; |
| 5459 | } |
| 5460 | |
| 5461 | public *traverse( |
| 5462 | source: GraphSource<any>, |
nothing calls this directly
no test coverage detected