(o: WorkflowGroupOutput)
| 377 | // on the registry `outputId` when present; fall back to `blockId::path` for |
| 378 | // workflow outputs. |
| 379 | const oldKey = (o: WorkflowGroupOutput) => |
| 380 | o.outputId ? `out::${o.outputId}` : `${o.blockId}::${o.path}` |
| 381 | const oldByKey = new Map(oldOutputs.map((o) => [oldKey(o), o])) |
| 382 | const newByKey = new Map(newOutputs.map((o) => [oldKey(o), o])) |
| 383 |
no outgoing calls
no test coverage detected