(node: Node|string)
| 235 | const willBeExecutedNodeNames = |
| 236 | new Set(orderedNodes.map((node) => node.name)); |
| 237 | const willBeExecuted = (node: Node|string) => |
| 238 | willBeExecutedNodeNames.has(typeof node === 'string' ? node : node.name); |
| 239 | |
| 240 | for (const node of orderedNodes) { |
| 241 | for (const child of node.children.filter(willBeExecuted)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…