(name)
| 482 | const payloadDispatched = (sel) => Boolean(sel?.by || (sel?.ordered && orderedIsDispatchable(sel.ordered))) |
| 483 | const correlated = new Set() |
| 484 | const mark = (name) => { |
| 485 | const t = types[name] |
| 486 | if (!t || t.kind !== 'union' || correlated.has(name) || payloadDispatched(t.selector)) return |
| 487 | correlated.add(name) |
| 488 | t.variants.forEach(mark) |
| 489 | } |
| 490 | roots.forEach(mark) |
| 491 | return correlated |
| 492 | } |
nothing calls this directly
no test coverage detected