(blockId: string)
| 287 | const previousEdgeSet = new Set(previousEdges.map(normalizedStringify)) |
| 288 | |
| 289 | const resolveBlockName = (blockId: string): string => { |
| 290 | const block = currentBlocks[blockId] || previousBlocks[blockId] |
| 291 | return block?.name || block?.type || blockId |
| 292 | } |
| 293 | |
| 294 | for (const edgeStr of currentEdgeSet) { |
| 295 | if (!previousEdgeSet.has(edgeStr)) { |
no outgoing calls
no test coverage detected