Skip to content

Commit 1aee5e1

Browse files
committed
Update LKG
1 parent 792e86e commit 1aee5e1

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

lib/tsc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15316,8 +15316,9 @@ var ts;
1531615316
}
1531715317
else {
1531815318
source = getApparentType(source);
15319-
if (source.flags & 80896 && (target.flags & (4096 | 8192) ||
15320-
(target.flags & 65536) && target.symbol && target.symbol.flags & (8192 | 2048 | 32))) {
15319+
if (source.flags & 80896 && (target.flags & 4096 && target.typeArguments ||
15320+
target.flags & 8192 ||
15321+
target.flags & 65536 && target.symbol && target.symbol.flags & (8192 | 2048 | 32))) {
1532115322
if (isInProcess(source, target)) {
1532215323
return;
1532315324
}
@@ -29873,7 +29874,7 @@ var ts;
2987329874
ts.ioReadTime = 0;
2987429875
ts.ioWriteTime = 0;
2987529876
var emptyArray = [];
29876-
ts.version = "1.7.3";
29877+
ts.version = "1.7.5";
2987729878
function findConfigFile(searchPath) {
2987829879
var fileName = "tsconfig.json";
2987929880
while (true) {

lib/tsserver.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15779,8 +15779,9 @@ var ts;
1577915779
}
1578015780
else {
1578115781
source = getApparentType(source);
15782-
if (source.flags & 80896 && (target.flags & (4096 | 8192) ||
15783-
(target.flags & 65536) && target.symbol && target.symbol.flags & (8192 | 2048 | 32))) {
15782+
if (source.flags & 80896 && (target.flags & 4096 && target.typeArguments ||
15783+
target.flags & 8192 ||
15784+
target.flags & 65536 && target.symbol && target.symbol.flags & (8192 | 2048 | 32))) {
1578415785
if (isInProcess(source, target)) {
1578515786
return;
1578615787
}
@@ -30336,7 +30337,7 @@ var ts;
3033630337
ts.ioReadTime = 0;
3033730338
ts.ioWriteTime = 0;
3033830339
var emptyArray = [];
30339-
ts.version = "1.7.3";
30340+
ts.version = "1.7.5";
3034030341
function findConfigFile(searchPath) {
3034130342
var fileName = "tsconfig.json";
3034230343
while (true) {

lib/typescript.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18777,9 +18777,11 @@ var ts;
1877718777
}
1877818778
else {
1877918779
source = getApparentType(source);
18780-
if (source.flags & 80896 /* ObjectType */ && (target.flags & (4096 /* Reference */ | 8192 /* Tuple */) ||
18781-
(target.flags & 65536 /* Anonymous */) && target.symbol && target.symbol.flags & (8192 /* Method */ | 2048 /* TypeLiteral */ | 32 /* Class */))) {
18782-
// If source is an object type, and target is a type reference, a tuple type, the type of a method, or a type literal, infer from members
18780+
if (source.flags & 80896 /* ObjectType */ && (target.flags & 4096 /* Reference */ && target.typeArguments ||
18781+
target.flags & 8192 /* Tuple */ ||
18782+
target.flags & 65536 /* Anonymous */ && target.symbol && target.symbol.flags & (8192 /* Method */ | 2048 /* TypeLiteral */ | 32 /* Class */))) {
18783+
// If source is an object type, and target is a type reference with type arguments, a tuple type,
18784+
// the type of a method, or a type literal, infer from members
1878318785
if (isInProcess(source, target)) {
1878418786
return;
1878518787
}
@@ -35986,7 +35988,7 @@ var ts;
3598635988
/* @internal */ ts.ioWriteTime = 0;
3598735989
/** The version of the TypeScript compiler release */
3598835990
var emptyArray = [];
35989-
ts.version = "1.7.3";
35991+
ts.version = "1.7.5";
3599035992
function findConfigFile(searchPath) {
3599135993
var fileName = "tsconfig.json";
3599235994
while (true) {

lib/typescriptServices.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18777,9 +18777,11 @@ var ts;
1877718777
}
1877818778
else {
1877918779
source = getApparentType(source);
18780-
if (source.flags & 80896 /* ObjectType */ && (target.flags & (4096 /* Reference */ | 8192 /* Tuple */) ||
18781-
(target.flags & 65536 /* Anonymous */) && target.symbol && target.symbol.flags & (8192 /* Method */ | 2048 /* TypeLiteral */ | 32 /* Class */))) {
18782-
// If source is an object type, and target is a type reference, a tuple type, the type of a method, or a type literal, infer from members
18780+
if (source.flags & 80896 /* ObjectType */ && (target.flags & 4096 /* Reference */ && target.typeArguments ||
18781+
target.flags & 8192 /* Tuple */ ||
18782+
target.flags & 65536 /* Anonymous */ && target.symbol && target.symbol.flags & (8192 /* Method */ | 2048 /* TypeLiteral */ | 32 /* Class */))) {
18783+
// If source is an object type, and target is a type reference with type arguments, a tuple type,
18784+
// the type of a method, or a type literal, infer from members
1878318785
if (isInProcess(source, target)) {
1878418786
return;
1878518787
}
@@ -35986,7 +35988,7 @@ var ts;
3598635988
/* @internal */ ts.ioWriteTime = 0;
3598735989
/** The version of the TypeScript compiler release */
3598835990
var emptyArray = [];
35989-
ts.version = "1.7.3";
35991+
ts.version = "1.7.5";
3599035992
function findConfigFile(searchPath) {
3599135993
var fileName = "tsconfig.json";
3599235994
while (true) {

scripts/word2md.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)