()
| 4035 | } |
| 4036 | |
| 4037 | protected get unionTraverser() { |
| 4038 | if (this.#unionTraverser === undefined) { |
| 4039 | return (this.#unionTraverser = createTraverser(this.steps)); |
| 4040 | } |
| 4041 | return this.#unionTraverser; |
| 4042 | } |
| 4043 | |
| 4044 | public *traverse( |
| 4045 | source: GraphSource<any>, |
nothing calls this directly
no test coverage detected