(source, target)
| 63834 | return isTypeRelatedTo(source, target, assignableRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; |
| 63835 | } |
| 63836 | function compareTypesSubtypeOf(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 | } |
nothing calls this directly
no test coverage detected