diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 7435fd095b6..6bd75c5d283 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -3001,17 +3001,6 @@ module ts { return result; } - function getExportsOfImportDeclaration(node: ImportDeclaration): Symbol[] { - if (!node.moduleSpecifier) { - return emptyArray; - } - let module = resolveExternalModuleName(node, node.moduleSpecifier); - if (!module) { - return emptyArray; - } - return symbolsToArray(getExportsOfModule(module)); - } - function getSignatureFromDeclaration(declaration: SignatureDeclaration): Signature { let links = getNodeLinks(declaration); if (!links.resolvedSignature) {