Skip to content

Commit c21193a

Browse files
committed
Removing unused function
1 parent fd52e9a commit c21193a

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/compiler/checker.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15368,20 +15368,6 @@ namespace ts {
1536815368
return symbol && getExportSymbolOfValueSymbolIfExported(symbol).valueDeclaration;
1536915369
}
1537015370

15371-
function instantiateSingleCallFunctionType(functionType: Type, typeArguments: Type[]): Type {
15372-
if (functionType === unknownType) {
15373-
return unknownType;
15374-
}
15375-
15376-
const signature = getSingleCallSignature(functionType);
15377-
if (!signature) {
15378-
return unknownType;
15379-
}
15380-
15381-
const instantiatedSignature = getSignatureInstantiation(signature, typeArguments);
15382-
return getOrCreateTypeFromSignature(instantiatedSignature);
15383-
}
15384-
1538515371
function createResolver(): EmitResolver {
1538615372
return {
1538715373
getReferencedExportContainer,

0 commit comments

Comments
 (0)