(type1, type2)
| 63872 | return isTypeRelatedTo(source, target, comparableRelation); |
| 63873 | } |
| 63874 | function areTypesComparable(type1, type2) { |
| 63875 | return isTypeComparableTo(type1, type2) || isTypeComparableTo(type2, type1); |
| 63876 | } |
| 63877 | function checkTypeAssignableTo(source, target, errorNode, headMessage, containingMessageChain, errorOutputObject) { |
| 63878 | return checkTypeRelatedTo(source, target, assignableRelation, errorNode, headMessage, containingMessageChain, errorOutputObject); |
| 63879 | } |
no test coverage detected