(source, target)
| 63837 | return isTypeRelatedTo(source, target, subtypeRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; |
| 63838 | } |
| 63839 | function isTypeSubtypeOf(source, target) { |
| 63840 | return isTypeRelatedTo(source, target, subtypeRelation); |
| 63841 | } |
| 63842 | function isTypeAssignableTo(source, target) { |
| 63843 | return isTypeRelatedTo(source, target, assignableRelation); |
| 63844 | } |
no test coverage detected