(lhs)
| 10900 | subtractTypeSetFrom(to_subtract, from) { |
| 10901 | const types = []; |
| 10902 | const should_subtract = (lhs) => to_subtract.some((rhs) => lhs.isSubtypeOf(rhs)); |
| 10903 | for (const t of from) { |
| 10904 | if (!should_subtract(t)) { |
| 10905 | types.push(t); |
nothing calls this directly
no test coverage detected