(name)
| 365 | const payloadDispatched = (sel) => Boolean(sel?.by || (sel?.ordered && orderedIsDispatchable(sel.ordered))) |
| 366 | const correlated = new Set() |
| 367 | const mark = (name) => { |
| 368 | const t = types[name] |
| 369 | if (!t || t.kind !== 'union' || correlated.has(name) || payloadDispatched(t.selector)) return |
| 370 | correlated.add(name) |
| 371 | t.variants.forEach(mark) |
| 372 | } |
| 373 | roots.forEach(mark) |
| 374 | return correlated |
| 375 | } |
nothing calls this directly
no test coverage detected