(block: BlockState | undefined)
| 18 | } |
| 19 | |
| 20 | function getParentId(block: BlockState | undefined): string | null { |
| 21 | return block?.data?.parentId ?? null |
| 22 | } |
| 23 | |
| 24 | function getScopeDropReason(edge: Edge, blocks: Record<string, BlockState>): string | null { |
| 25 | const sourceBlock = blocks[edge.source] |
no outgoing calls
no test coverage detected