From 7b7febde0bff35d34664e2a241c2e827b8850013 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Tue, 13 Jan 2015 09:23:38 -0800 Subject: [PATCH] Update LKG --- bin/tsc.js | 28 ++++++++++++++++++++-------- bin/typescriptServices.js | 28 ++++++++++++++++++++-------- 2 files changed, 40 insertions(+), 16 deletions(-) diff --git a/bin/tsc.js b/bin/tsc.js index 69ed196f789aa..acbc0c499d241 100644 --- a/bin/tsc.js +++ b/bin/tsc.js @@ -4560,16 +4560,16 @@ var ts; } function parsePrimaryExpression() { switch (token) { + case 6 /* NumericLiteral */: + case 7 /* StringLiteral */: + case 9 /* NoSubstitutionTemplateLiteral */: + return parseLiteralNode(); case 91 /* ThisKeyword */: case 89 /* SuperKeyword */: case 87 /* NullKeyword */: case 93 /* TrueKeyword */: case 78 /* FalseKeyword */: return parseTokenNode(); - case 6 /* NumericLiteral */: - case 7 /* StringLiteral */: - case 9 /* NoSubstitutionTemplateLiteral */: - return parseLiteralNode(); case 15 /* OpenParenToken */: return parseParenthesizedExpression(); case 17 /* OpenBracketToken */: @@ -6592,7 +6592,10 @@ var ts; } } else { - if (!(findSourceFile(filename + ".ts", isDefaultLib, refFile, refPos, refEnd) || findSourceFile(filename + ".d.ts", isDefaultLib, refFile, refPos, refEnd))) { + if (options.allowNonTsExtensions && !findSourceFile(filename, isDefaultLib, refFile, refPos, refEnd)) { + diagnostic = ts.Diagnostics.File_0_not_found; + } + else if (!findSourceFile(filename + ".ts", isDefaultLib, refFile, refPos, refEnd) && !findSourceFile(filename + ".d.ts", isDefaultLib, refFile, refPos, refEnd)) { diagnostic = ts.Diagnostics.File_0_not_found; filename += ".ts"; } @@ -11583,7 +11586,6 @@ var ts; case 131 /* IndexSignature */: case 123 /* Parameter */: case 190 /* ModuleBlock */: - case 122 /* TypeParameter */: case 133 /* FunctionType */: case 134 /* ConstructorType */: case 136 /* TypeLiteral */: @@ -11593,6 +11595,7 @@ var ts; case 139 /* UnionType */: case 140 /* ParenthesizedType */: return isDeclarationVisible(node.parent); + case 122 /* TypeParameter */: case 201 /* SourceFile */: return true; default: @@ -17569,8 +17572,17 @@ var ts; } function isUniqueLocalName(name, container) { for (var node = container; isNodeDescendentOf(node, container); node = node.nextContainer) { - if (node.locals && ts.hasProperty(node.locals, name) && node.locals[name].flags & (107455 /* Value */ | 4194304 /* ExportValue */)) { - return false; + if (node.locals && ts.hasProperty(node.locals, name)) { + var symbolWithRelevantName = node.locals[name]; + if (symbolWithRelevantName.flags & (107455 /* Value */ | 4194304 /* ExportValue */)) { + return false; + } + if (symbolWithRelevantName.flags & 33554432 /* Import */) { + var importDeclarationWithRelevantName = ts.getDeclarationOfKind(symbolWithRelevantName, 191 /* ImportDeclaration */); + if (isReferencedImportDeclaration(importDeclarationWithRelevantName)) { + return false; + } + } } } return true; diff --git a/bin/typescriptServices.js b/bin/typescriptServices.js index 6f26fe9c4030e..078cd0a52c899 100644 --- a/bin/typescriptServices.js +++ b/bin/typescriptServices.js @@ -5142,16 +5142,16 @@ var ts; } function parsePrimaryExpression() { switch (token) { + case 6 /* NumericLiteral */: + case 7 /* StringLiteral */: + case 9 /* NoSubstitutionTemplateLiteral */: + return parseLiteralNode(); case 91 /* ThisKeyword */: case 89 /* SuperKeyword */: case 87 /* NullKeyword */: case 93 /* TrueKeyword */: case 78 /* FalseKeyword */: return parseTokenNode(); - case 6 /* NumericLiteral */: - case 7 /* StringLiteral */: - case 9 /* NoSubstitutionTemplateLiteral */: - return parseLiteralNode(); case 15 /* OpenParenToken */: return parseParenthesizedExpression(); case 17 /* OpenBracketToken */: @@ -7174,7 +7174,10 @@ var ts; } } else { - if (!(findSourceFile(filename + ".ts", isDefaultLib, refFile, refPos, refEnd) || findSourceFile(filename + ".d.ts", isDefaultLib, refFile, refPos, refEnd))) { + if (options.allowNonTsExtensions && !findSourceFile(filename, isDefaultLib, refFile, refPos, refEnd)) { + diagnostic = ts.Diagnostics.File_0_not_found; + } + else if (!findSourceFile(filename + ".ts", isDefaultLib, refFile, refPos, refEnd) && !findSourceFile(filename + ".d.ts", isDefaultLib, refFile, refPos, refEnd)) { diagnostic = ts.Diagnostics.File_0_not_found; filename += ".ts"; } @@ -12171,7 +12174,6 @@ var ts; case 131 /* IndexSignature */: case 123 /* Parameter */: case 190 /* ModuleBlock */: - case 122 /* TypeParameter */: case 133 /* FunctionType */: case 134 /* ConstructorType */: case 136 /* TypeLiteral */: @@ -12181,6 +12183,7 @@ var ts; case 139 /* UnionType */: case 140 /* ParenthesizedType */: return isDeclarationVisible(node.parent); + case 122 /* TypeParameter */: case 201 /* SourceFile */: return true; default: @@ -18157,8 +18160,17 @@ var ts; } function isUniqueLocalName(name, container) { for (var node = container; isNodeDescendentOf(node, container); node = node.nextContainer) { - if (node.locals && ts.hasProperty(node.locals, name) && node.locals[name].flags & (107455 /* Value */ | 4194304 /* ExportValue */)) { - return false; + if (node.locals && ts.hasProperty(node.locals, name)) { + var symbolWithRelevantName = node.locals[name]; + if (symbolWithRelevantName.flags & (107455 /* Value */ | 4194304 /* ExportValue */)) { + return false; + } + if (symbolWithRelevantName.flags & 33554432 /* Import */) { + var importDeclarationWithRelevantName = ts.getDeclarationOfKind(symbolWithRelevantName, 191 /* ImportDeclaration */); + if (isReferencedImportDeclaration(importDeclarationWithRelevantName)) { + return false; + } + } } } return true;