* Helper to extract dirty set from computeExecutionSets
(dag: DAG, startBlockId: string)
| 8 | * Helper to extract dirty set from computeExecutionSets |
| 9 | */ |
| 10 | function computeDirtySet(dag: DAG, startBlockId: string): Set<string> { |
| 11 | return computeExecutionSets(dag, startBlockId).dirtySet |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Helper to create a DAG node for testing |
no test coverage detected