(source, target, errorNode, headMessage, containingMessageChain, errorOutputObject)
| 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 | } |
| 63880 | /** |
| 63881 | * Like `checkTypeAssignableTo`, but if it would issue an error, instead performs structural comparisons of the types using the given expression node to |
| 63882 | * attempt to issue more specific errors on, for example, specific object literal properties or tuple members. |
no test coverage detected
searching dependent graphs…