(source, target)
| 63831 | return isTypeRelatedTo(source, target, identityRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; |
| 63832 | } |
| 63833 | function compareTypesAssignable(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 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…