* See signatureAssignableTo, compareSignaturesIdentical
(source, target, erase, reportErrors, incompatibleReporter)
| 66727 | * See signatureAssignableTo, compareSignaturesIdentical |
| 66728 | */ |
| 66729 | function signatureRelatedTo(source, target, erase, reportErrors, incompatibleReporter) { |
| 66730 | return compareSignaturesRelated(erase ? getErasedSignature(source) : source, erase ? getErasedSignature(target) : target, relation === strictSubtypeRelation ? 8 /* SignatureCheckMode.StrictArity */ : 0, reportErrors, reportError, incompatibleReporter, isRelatedToWorker, makeFunctionTypeMapper(reportUnreliableMarkers)); |
| 66731 | } |
| 66732 | function signaturesIdenticalTo(source, target, kind) { |
| 66733 | var sourceSignatures = getSignaturesOfType(source, kind); |
| 66734 | var targetSignatures = getSignaturesOfType(target, kind); |
no test coverage detected