(node: Node, visitor: (node: Node) => void)
| 104 | } |
| 105 | |
| 106 | function visitNodes(node: Node, visitor: (node: Node) => void): void { |
| 107 | visitor(node) |
| 108 | for (const child of node.children) { |
| 109 | visitNodes(child, visitor) |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | function extractPipePositions(rootNode: Node): number[] { |
| 114 | const pipePositions: number[] = [] |
no outgoing calls
no test coverage detected