()
| 4107 | } |
| 4108 | |
| 4109 | protected get traversers(): Traverser[] { |
| 4110 | if (this.#traversers === undefined) { |
| 4111 | this.#traversers = this.#branches.map((steps) => createTraverser(steps)); |
| 4112 | } |
| 4113 | return this.#traversers; |
| 4114 | } |
| 4115 | |
| 4116 | public *traverse( |
| 4117 | source: GraphSource<any>, |
nothing calls this directly
no test coverage detected