()
| 4262 | } |
| 4263 | |
| 4264 | protected get traversers(): Traverser[] { |
| 4265 | if (this.#traversers === undefined) { |
| 4266 | this.#traversers = this.#statements.map((steps) => createTraverser(steps)); |
| 4267 | } |
| 4268 | return this.#traversers; |
| 4269 | } |
| 4270 | |
| 4271 | public *traverse( |
| 4272 | source: GraphSource<any>, |
nothing calls this directly
no test coverage detected