(source, target)
| 63840 | return isTypeRelatedTo(source, target, subtypeRelation); |
| 63841 | } |
| 63842 | function isTypeAssignableTo(source, target) { |
| 63843 | return isTypeRelatedTo(source, target, assignableRelation); |
| 63844 | } |
| 63845 | // An object type S is considered to be derived from an object type T if |
| 63846 | // S is a union type and every constituent of S is derived from T, |
| 63847 | // T is a union type and S is derived from at least one constituent of T, or |
no test coverage detected