Skip to content

Commit 2ff333c

Browse files
Update LKG.
1 parent 6105867 commit 2ff333c

9 files changed

+70
-26
lines changed

lib/tsc.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ var ts;
151151
})(ts || (ts = {}));
152152
var ts;
153153
(function (ts) {
154-
ts.version = "2.4.1";
154+
ts.version = "2.4.2";
155155
})(ts || (ts = {}));
156156
(function (ts) {
157157
ts.collator = typeof Intl === "object" && typeof Intl.Collator === "function" ? new Intl.Collator(undefined, { usage: "sort", sensitivity: "accent" }) : undefined;
@@ -23140,7 +23140,7 @@ var ts;
2314023140
}
2314123141
function getExportsOfModule(moduleSymbol) {
2314223142
var links = getSymbolLinks(moduleSymbol);
23143-
return links.resolvedExports || (links.resolvedExports = getExportsForModule(moduleSymbol));
23143+
return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol));
2314423144
}
2314523145
function extendExportSymbols(target, source, lookupTable, exportNode) {
2314623146
source && source.forEach(function (sourceSymbol, id) {
@@ -23166,10 +23166,10 @@ var ts;
2316623166
}
2316723167
});
2316823168
}
23169-
function getExportsForModule(moduleSymbol) {
23169+
function getExportsOfModuleWorker(moduleSymbol) {
2317023170
var visitedSymbols = [];
2317123171
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
23172-
return visit(moduleSymbol) || moduleSymbol.exports;
23172+
return visit(moduleSymbol) || emptySymbols;
2317323173
function visit(symbol) {
2317423174
if (!(symbol && symbol.flags & 1952 && !ts.contains(visitedSymbols, symbol))) {
2317523175
return;

lib/tsserver.js

+27-5
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ var ts;
11451145
})(ts || (ts = {}));
11461146
var ts;
11471147
(function (ts) {
1148-
ts.version = "2.4.1";
1148+
ts.version = "2.4.2";
11491149
})(ts || (ts = {}));
11501150
(function (ts) {
11511151
var Ternary;
@@ -24334,7 +24334,7 @@ var ts;
2433424334
}
2433524335
function getExportsOfModule(moduleSymbol) {
2433624336
var links = getSymbolLinks(moduleSymbol);
24337-
return links.resolvedExports || (links.resolvedExports = getExportsForModule(moduleSymbol));
24337+
return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol));
2433824338
}
2433924339
function extendExportSymbols(target, source, lookupTable, exportNode) {
2434024340
source && source.forEach(function (sourceSymbol, id) {
@@ -24360,10 +24360,10 @@ var ts;
2436024360
}
2436124361
});
2436224362
}
24363-
function getExportsForModule(moduleSymbol) {
24363+
function getExportsOfModuleWorker(moduleSymbol) {
2436424364
var visitedSymbols = [];
2436524365
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
24366-
return visit(moduleSymbol) || moduleSymbol.exports;
24366+
return visit(moduleSymbol) || emptySymbols;
2436724367
function visit(symbol) {
2436824368
if (!(symbol && symbol.flags & 1952 && !ts.contains(visitedSymbols, symbol))) {
2436924369
return;
@@ -76539,6 +76539,9 @@ var ts;
7653976539
AbstractBuilder.prototype.getFileInfos = function () {
7654076540
return this.fileInfos_doNotAccessDirectly || (this.fileInfos_doNotAccessDirectly = ts.createFileMap());
7654176541
};
76542+
AbstractBuilder.prototype.hasFileInfos = function () {
76543+
return !!this.fileInfos_doNotAccessDirectly;
76544+
};
7654276545
AbstractBuilder.prototype.clear = function () {
7654376546
this.fileInfos_doNotAccessDirectly = undefined;
7654476547
};
@@ -76567,6 +76570,7 @@ var ts;
7656776570
this.getFileInfos().forEachValue(function (_path, value) { return action(value); });
7656876571
};
7656976572
AbstractBuilder.prototype.emitFile = function (scriptInfo, writeFile) {
76573+
this.ensureFileInfoIfInProject(scriptInfo);
7657076574
var fileInfo = this.getFileInfo(scriptInfo.path);
7657176575
if (!fileInfo) {
7657276576
return false;
@@ -76591,7 +76595,20 @@ var ts;
7659176595
_this.project = project;
7659276596
return _this;
7659376597
}
76598+
NonModuleBuilder.prototype.ensureFileInfoIfInProject = function (scriptInfo) {
76599+
if (this.project.containsScriptInfo(scriptInfo)) {
76600+
this.getOrCreateFileInfo(scriptInfo.path);
76601+
}
76602+
};
7659476603
NonModuleBuilder.prototype.onProjectUpdateGraph = function () {
76604+
var _this = this;
76605+
if (this.hasFileInfos()) {
76606+
this.forEachFileInfo(function (fileInfo) {
76607+
if (!_this.project.containsScriptInfo(fileInfo.scriptInfo)) {
76608+
_this.removeFileInfo(fileInfo.scriptInfo.path);
76609+
}
76610+
});
76611+
}
7659576612
};
7659676613
NonModuleBuilder.prototype.getFilesAffectedBy = function (scriptInfo) {
7659776614
var info = this.getOrCreateFileInfo(scriptInfo.path);
@@ -76680,9 +76697,14 @@ var ts;
7668076697
}
7668176698
return [];
7668276699
};
76683-
ModuleBuilder.prototype.onProjectUpdateGraph = function () {
76700+
ModuleBuilder.prototype.ensureFileInfoIfInProject = function (_scriptInfo) {
7668476701
this.ensureProjectDependencyGraphUpToDate();
7668576702
};
76703+
ModuleBuilder.prototype.onProjectUpdateGraph = function () {
76704+
if (this.hasFileInfos()) {
76705+
this.ensureProjectDependencyGraphUpToDate();
76706+
}
76707+
};
7668676708
ModuleBuilder.prototype.ensureProjectDependencyGraphUpToDate = function () {
7668776709
var _this = this;
7668876710
if (!this.projectVersionForDependencyGraph || this.project.getProjectVersion() !== this.projectVersionForDependencyGraph) {

lib/tsserverlibrary.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2340,7 +2340,7 @@ declare namespace ts {
23402340
}
23412341
}
23422342
declare namespace ts {
2343-
const version = "2.4.1";
2343+
const version = "2.4.2";
23442344
}
23452345
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
23462346
declare function clearTimeout(handle: any): void;

lib/tsserverlibrary.js

+27-5
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ var ts;
11451145
})(ts || (ts = {}));
11461146
var ts;
11471147
(function (ts) {
1148-
ts.version = "2.4.1";
1148+
ts.version = "2.4.2";
11491149
})(ts || (ts = {}));
11501150
(function (ts) {
11511151
var Ternary;
@@ -25731,7 +25731,7 @@ var ts;
2573125731
}
2573225732
function getExportsOfModule(moduleSymbol) {
2573325733
var links = getSymbolLinks(moduleSymbol);
25734-
return links.resolvedExports || (links.resolvedExports = getExportsForModule(moduleSymbol));
25734+
return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol));
2573525735
}
2573625736
function extendExportSymbols(target, source, lookupTable, exportNode) {
2573725737
source && source.forEach(function (sourceSymbol, id) {
@@ -25757,10 +25757,10 @@ var ts;
2575725757
}
2575825758
});
2575925759
}
25760-
function getExportsForModule(moduleSymbol) {
25760+
function getExportsOfModuleWorker(moduleSymbol) {
2576125761
var visitedSymbols = [];
2576225762
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
25763-
return visit(moduleSymbol) || moduleSymbol.exports;
25763+
return visit(moduleSymbol) || emptySymbols;
2576425764
function visit(symbol) {
2576525765
if (!(symbol && symbol.flags & 1952 && !ts.contains(visitedSymbols, symbol))) {
2576625766
return;
@@ -78425,6 +78425,9 @@ var ts;
7842578425
AbstractBuilder.prototype.getFileInfos = function () {
7842678426
return this.fileInfos_doNotAccessDirectly || (this.fileInfos_doNotAccessDirectly = ts.createFileMap());
7842778427
};
78428+
AbstractBuilder.prototype.hasFileInfos = function () {
78429+
return !!this.fileInfos_doNotAccessDirectly;
78430+
};
7842878431
AbstractBuilder.prototype.clear = function () {
7842978432
this.fileInfos_doNotAccessDirectly = undefined;
7843078433
};
@@ -78453,6 +78456,7 @@ var ts;
7845378456
this.getFileInfos().forEachValue(function (_path, value) { return action(value); });
7845478457
};
7845578458
AbstractBuilder.prototype.emitFile = function (scriptInfo, writeFile) {
78459+
this.ensureFileInfoIfInProject(scriptInfo);
7845678460
var fileInfo = this.getFileInfo(scriptInfo.path);
7845778461
if (!fileInfo) {
7845878462
return false;
@@ -78477,7 +78481,20 @@ var ts;
7847778481
_this.project = project;
7847878482
return _this;
7847978483
}
78484+
NonModuleBuilder.prototype.ensureFileInfoIfInProject = function (scriptInfo) {
78485+
if (this.project.containsScriptInfo(scriptInfo)) {
78486+
this.getOrCreateFileInfo(scriptInfo.path);
78487+
}
78488+
};
7848078489
NonModuleBuilder.prototype.onProjectUpdateGraph = function () {
78490+
var _this = this;
78491+
if (this.hasFileInfos()) {
78492+
this.forEachFileInfo(function (fileInfo) {
78493+
if (!_this.project.containsScriptInfo(fileInfo.scriptInfo)) {
78494+
_this.removeFileInfo(fileInfo.scriptInfo.path);
78495+
}
78496+
});
78497+
}
7848178498
};
7848278499
NonModuleBuilder.prototype.getFilesAffectedBy = function (scriptInfo) {
7848378500
var info = this.getOrCreateFileInfo(scriptInfo.path);
@@ -78566,9 +78583,14 @@ var ts;
7856678583
}
7856778584
return [];
7856878585
};
78569-
ModuleBuilder.prototype.onProjectUpdateGraph = function () {
78586+
ModuleBuilder.prototype.ensureFileInfoIfInProject = function (_scriptInfo) {
7857078587
this.ensureProjectDependencyGraphUpToDate();
7857178588
};
78589+
ModuleBuilder.prototype.onProjectUpdateGraph = function () {
78590+
if (this.hasFileInfos()) {
78591+
this.ensureProjectDependencyGraphUpToDate();
78592+
}
78593+
};
7857278594
ModuleBuilder.prototype.ensureProjectDependencyGraphUpToDate = function () {
7857378595
var _this = this;
7857478596
if (!this.projectVersionForDependencyGraph || this.project.getProjectVersion() !== this.projectVersionForDependencyGraph) {

lib/typescript.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2594,7 +2594,7 @@ declare namespace ts {
25942594
}
25952595
declare namespace ts {
25962596
/** The version of the TypeScript compiler release */
2597-
const version = "2.4.1";
2597+
const version = "2.4.2";
25982598
}
25992599
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
26002600
declare function clearTimeout(handle: any): void;

lib/typescript.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,7 @@ var ts;
13181318
var ts;
13191319
(function (ts) {
13201320
/** The version of the TypeScript compiler release */
1321-
ts.version = "2.4.1";
1321+
ts.version = "2.4.2";
13221322
})(ts || (ts = {}));
13231323
/* @internal */
13241324
(function (ts) {
@@ -28322,7 +28322,7 @@ var ts;
2832228322
}
2832328323
function getExportsOfModule(moduleSymbol) {
2832428324
var links = getSymbolLinks(moduleSymbol);
28325-
return links.resolvedExports || (links.resolvedExports = getExportsForModule(moduleSymbol));
28325+
return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol));
2832628326
}
2832728327
/**
2832828328
* Extends one symbol table with another while collecting information on name collisions for error message generation into the `lookupTable` argument
@@ -28352,11 +28352,11 @@ var ts;
2835228352
}
2835328353
});
2835428354
}
28355-
function getExportsForModule(moduleSymbol) {
28355+
function getExportsOfModuleWorker(moduleSymbol) {
2835628356
var visitedSymbols = [];
2835728357
// A module defined by an 'export=' consists on one export that needs to be resolved
2835828358
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
28359-
return visit(moduleSymbol) || moduleSymbol.exports;
28359+
return visit(moduleSymbol) || emptySymbols;
2836028360
// The ES6 spec permits export * declarations in a module to circularly reference the module itself. For example,
2836128361
// module 'a' can 'export * from "b"' and 'b' can 'export * from "a"' without error.
2836228362
function visit(symbol) {

lib/typescriptServices.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2594,7 +2594,7 @@ declare namespace ts {
25942594
}
25952595
declare namespace ts {
25962596
/** The version of the TypeScript compiler release */
2597-
const version = "2.4.1";
2597+
const version = "2.4.2";
25982598
}
25992599
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
26002600
declare function clearTimeout(handle: any): void;

lib/typescriptServices.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,7 @@ var ts;
13181318
var ts;
13191319
(function (ts) {
13201320
/** The version of the TypeScript compiler release */
1321-
ts.version = "2.4.1";
1321+
ts.version = "2.4.2";
13221322
})(ts || (ts = {}));
13231323
/* @internal */
13241324
(function (ts) {
@@ -28322,7 +28322,7 @@ var ts;
2832228322
}
2832328323
function getExportsOfModule(moduleSymbol) {
2832428324
var links = getSymbolLinks(moduleSymbol);
28325-
return links.resolvedExports || (links.resolvedExports = getExportsForModule(moduleSymbol));
28325+
return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol));
2832628326
}
2832728327
/**
2832828328
* Extends one symbol table with another while collecting information on name collisions for error message generation into the `lookupTable` argument
@@ -28352,11 +28352,11 @@ var ts;
2835228352
}
2835328353
});
2835428354
}
28355-
function getExportsForModule(moduleSymbol) {
28355+
function getExportsOfModuleWorker(moduleSymbol) {
2835628356
var visitedSymbols = [];
2835728357
// A module defined by an 'export=' consists on one export that needs to be resolved
2835828358
moduleSymbol = resolveExternalModuleSymbol(moduleSymbol);
28359-
return visit(moduleSymbol) || moduleSymbol.exports;
28359+
return visit(moduleSymbol) || emptySymbols;
2836028360
// The ES6 spec permits export * declarations in a module to circularly reference the module itself. For example,
2836128361
// module 'a' can 'export * from "b"' and 'b' can 'export * from "a"' without error.
2836228362
function visit(symbol) {

lib/typingsInstaller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ var ts;
161161
})(ts || (ts = {}));
162162
var ts;
163163
(function (ts) {
164-
ts.version = "2.4.1";
164+
ts.version = "2.4.2";
165165
})(ts || (ts = {}));
166166
(function (ts) {
167167
ts.collator = typeof Intl === "object" && typeof Intl.Collator === "function" ? new Intl.Collator(undefined, { usage: "sort", sensitivity: "accent" }) : undefined;

0 commit comments

Comments
 (0)