From 8943c3952cee44c1ead18caf1626d98eeb7554de Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Mon, 23 Mar 2015 10:06:23 -0700 Subject: [PATCH] removed unused functions --- src/compiler/checker.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index d50e440c5e9..abfbc7b1e33 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -11073,14 +11073,6 @@ module ts { return links.generatedName; } - function getLocalNameOfContainer(container: ModuleDeclaration | EnumDeclaration): string { - return getGeneratedNameForNode(container); - } - - function getLocalNameForImportDeclaration(node: ImportDeclaration): string { - return getGeneratedNameForNode(node); - } - function getAliasNameSubstitution(symbol: Symbol): string { let declaration = getDeclarationOfAliasSymbol(symbol); if (declaration && declaration.kind === SyntaxKind.ImportSpecifier) {