(a, b, prim)
| 605 | } |
| 606 | |
| 607 | function setMightHaveLoosePrim(a, b, prim) { |
| 608 | const altValue = findLooseMatchingPrimitives(prim); |
| 609 | if (altValue != null) |
| 610 | return altValue; |
| 611 | |
| 612 | return !b.has(altValue) && a.has(altValue); |
| 613 | } |
| 614 | |
| 615 | function mapMightHaveLoosePrim(a, b, prim, item2, memo) { |
| 616 | const altValue = findLooseMatchingPrimitives(prim); |
no test coverage detected
searching dependent graphs…