(flow)
| 69540 | return false; |
| 69541 | } |
| 69542 | function getFlowNodeId(flow) { |
| 69543 | if (!flow.id || flow.id < 0) { |
| 69544 | flow.id = nextFlowId; |
| 69545 | nextFlowId++; |
| 69546 | } |
| 69547 | return flow.id; |
| 69548 | } |
| 69549 | function typeMaybeAssignableTo(source, target) { |
| 69550 | if (!(source.flags & 1048576 /* TypeFlags.Union */)) { |
| 69551 | return isTypeAssignableTo(source, target); |
no outgoing calls
no test coverage detected
searching dependent graphs…