Skip to content

Commit 98cfe76

Browse files
Update LKG.
1 parent cfa5687 commit 98cfe76

File tree

6 files changed

+30
-12
lines changed

6 files changed

+30
-12
lines changed

lib/tsc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "3.7";
70-
ts.version = ts.versionMajorMinor + ".3";
70+
ts.version = ts.versionMajorMinor + ".4";
7171
})(ts || (ts = {}));
7272
(function (ts) {
7373
function tryGetNativeMap() {
@@ -25599,7 +25599,10 @@ var ts;
2559925599
}
2560025600
break;
2560125601
case 288:
25602-
if (thisContainer.commonJsModuleIndicator) {
25602+
if (ts.hasDynamicName(node)) {
25603+
break;
25604+
}
25605+
else if (thisContainer.commonJsModuleIndicator) {
2560325606
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 | 1048576, 0);
2560425607
}
2560525608
else {

lib/tsserver.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var ts;
9494
// If changing the text in this section, be sure to test `configureNightly` too.
9595
ts.versionMajorMinor = "3.7";
9696
/** The version of the TypeScript compiler release */
97-
ts.version = ts.versionMajorMinor + ".3";
97+
ts.version = ts.versionMajorMinor + ".4";
9898
})(ts || (ts = {}));
9999
(function (ts) {
100100
/* @internal */
@@ -31362,7 +31362,10 @@ var ts;
3136231362
break;
3136331363
case 288 /* SourceFile */:
3136431364
// this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script
31365-
if (thisContainer.commonJsModuleIndicator) {
31365+
if (ts.hasDynamicName(node)) {
31366+
break;
31367+
}
31368+
else if (thisContainer.commonJsModuleIndicator) {
3136631369
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* Property */ | 1048576 /* ExportValue */, 0 /* None */);
3136731370
}
3136831371
else {

lib/tsserverlibrary.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configureNightly` too.
245245
ts.versionMajorMinor = "3.7";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = ts.versionMajorMinor + ".3";
247+
ts.version = ts.versionMajorMinor + ".4";
248248
})(ts || (ts = {}));
249249
(function (ts) {
250250
/* @internal */
@@ -31512,7 +31512,10 @@ var ts;
3151231512
break;
3151331513
case 288 /* SourceFile */:
3151431514
// this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script
31515-
if (thisContainer.commonJsModuleIndicator) {
31515+
if (ts.hasDynamicName(node)) {
31516+
break;
31517+
}
31518+
else if (thisContainer.commonJsModuleIndicator) {
3151631519
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* Property */ | 1048576 /* ExportValue */, 0 /* None */);
3151731520
}
3151831521
else {

lib/typescript.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ var ts;
233233
// If changing the text in this section, be sure to test `configureNightly` too.
234234
ts.versionMajorMinor = "3.7";
235235
/** The version of the TypeScript compiler release */
236-
ts.version = ts.versionMajorMinor + ".3";
236+
ts.version = ts.versionMajorMinor + ".4";
237237
})(ts || (ts = {}));
238238
(function (ts) {
239239
/* @internal */
@@ -31501,7 +31501,10 @@ var ts;
3150131501
break;
3150231502
case 288 /* SourceFile */:
3150331503
// this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script
31504-
if (thisContainer.commonJsModuleIndicator) {
31504+
if (ts.hasDynamicName(node)) {
31505+
break;
31506+
}
31507+
else if (thisContainer.commonJsModuleIndicator) {
3150531508
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* Property */ | 1048576 /* ExportValue */, 0 /* None */);
3150631509
}
3150731510
else {

lib/typescriptServices.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ var ts;
233233
// If changing the text in this section, be sure to test `configureNightly` too.
234234
ts.versionMajorMinor = "3.7";
235235
/** The version of the TypeScript compiler release */
236-
ts.version = ts.versionMajorMinor + ".3";
236+
ts.version = ts.versionMajorMinor + ".4";
237237
})(ts || (ts = {}));
238238
(function (ts) {
239239
/* @internal */
@@ -31501,7 +31501,10 @@ var ts;
3150131501
break;
3150231502
case 288 /* SourceFile */:
3150331503
// this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script
31504-
if (thisContainer.commonJsModuleIndicator) {
31504+
if (ts.hasDynamicName(node)) {
31505+
break;
31506+
}
31507+
else if (thisContainer.commonJsModuleIndicator) {
3150531508
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* Property */ | 1048576 /* ExportValue */, 0 /* None */);
3150631509
}
3150731510
else {

lib/typingsInstaller.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ var ts;
8383
// If changing the text in this section, be sure to test `configureNightly` too.
8484
ts.versionMajorMinor = "3.7";
8585
/** The version of the TypeScript compiler release */
86-
ts.version = ts.versionMajorMinor + ".3";
86+
ts.version = ts.versionMajorMinor + ".4";
8787
})(ts || (ts = {}));
8888
(function (ts) {
8989
/* @internal */
@@ -31351,7 +31351,10 @@ var ts;
3135131351
break;
3135231352
case 288 /* SourceFile */:
3135331353
// this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script
31354-
if (thisContainer.commonJsModuleIndicator) {
31354+
if (ts.hasDynamicName(node)) {
31355+
break;
31356+
}
31357+
else if (thisContainer.commonJsModuleIndicator) {
3135531358
declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* Property */ | 1048576 /* ExportValue */, 0 /* None */);
3135631359
}
3135731360
else {

0 commit comments

Comments
 (0)