Skip to content

Commit f54e5ab

Browse files
committed
Merge branch 'master' into fix-intersection-target-excess-props-checks
2 parents b7f9326 + f617d16 commit f54e5ab

File tree

107 files changed

+4760
-1965
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+4760
-1965
lines changed

lib/tsserver.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33624,7 +33624,7 @@ var ts;
3362433624
return type;
3362533625
}
3362633626
// A reserved member name starts with two underscores, but the third character cannot be an underscore
33627-
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
33627+
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
3362833628
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
3362933629
// Symbol instance.
3363033630
function isReservedMemberName(name) {
@@ -99911,9 +99911,9 @@ var ts;
9991199911
|| ts.isKnownSymbol(symbol)) {
9991299912
return undefined;
9991399913
}
99914-
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
99914+
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
9991599915
if (ts.isIdentifierText(name, target))
99916-
return validIdentiferResult;
99916+
return validIdentifierResult;
9991799917
switch (kind) {
9991899918
case 3 /* MemberLike */:
9991999919
return undefined;
@@ -99926,7 +99926,7 @@ var ts;
9992699926
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
9992799927
case 5 /* None */:
9992899928
case 4 /* String */:
99929-
return validIdentiferResult;
99929+
return validIdentifierResult;
9993099930
default:
9993199931
ts.Debug.assertNever(kind);
9993299932
}

lib/tsserverlibrary.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33623,7 +33623,7 @@ var ts;
3362333623
return type;
3362433624
}
3362533625
// A reserved member name starts with two underscores, but the third character cannot be an underscore
33626-
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
33626+
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
3362733627
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
3362833628
// Symbol instance.
3362933629
function isReservedMemberName(name) {
@@ -100250,9 +100250,9 @@ var ts;
100250100250
|| ts.isKnownSymbol(symbol)) {
100251100251
return undefined;
100252100252
}
100253-
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
100253+
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
100254100254
if (ts.isIdentifierText(name, target))
100255-
return validIdentiferResult;
100255+
return validIdentifierResult;
100256100256
switch (kind) {
100257100257
case 3 /* MemberLike */:
100258100258
return undefined;
@@ -100265,7 +100265,7 @@ var ts;
100265100265
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
100266100266
case 5 /* None */:
100267100267
case 4 /* String */:
100268-
return validIdentiferResult;
100268+
return validIdentifierResult;
100269100269
default:
100270100270
ts.Debug.assertNever(kind);
100271100271
}

lib/typescript.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33614,7 +33614,7 @@ var ts;
3361433614
return type;
3361533615
}
3361633616
// A reserved member name starts with two underscores, but the third character cannot be an underscore
33617-
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
33617+
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
3361833618
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
3361933619
// Symbol instance.
3362033620
function isReservedMemberName(name) {
@@ -100241,9 +100241,9 @@ var ts;
100241100241
|| ts.isKnownSymbol(symbol)) {
100242100242
return undefined;
100243100243
}
100244-
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
100244+
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
100245100245
if (ts.isIdentifierText(name, target))
100246-
return validIdentiferResult;
100246+
return validIdentifierResult;
100247100247
switch (kind) {
100248100248
case 3 /* MemberLike */:
100249100249
return undefined;
@@ -100256,7 +100256,7 @@ var ts;
100256100256
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
100257100257
case 5 /* None */:
100258100258
case 4 /* String */:
100259-
return validIdentiferResult;
100259+
return validIdentifierResult;
100260100260
default:
100261100261
ts.Debug.assertNever(kind);
100262100262
}

lib/typescriptServices.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33614,7 +33614,7 @@ var ts;
3361433614
return type;
3361533615
}
3361633616
// A reserved member name starts with two underscores, but the third character cannot be an underscore
33617-
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
33617+
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
3361833618
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
3361933619
// Symbol instance.
3362033620
function isReservedMemberName(name) {
@@ -100241,9 +100241,9 @@ var ts;
100241100241
|| ts.isKnownSymbol(symbol)) {
100242100242
return undefined;
100243100243
}
100244-
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
100244+
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
100245100245
if (ts.isIdentifierText(name, target))
100246-
return validIdentiferResult;
100246+
return validIdentifierResult;
100247100247
switch (kind) {
100248100248
case 3 /* MemberLike */:
100249100249
return undefined;
@@ -100256,7 +100256,7 @@ var ts;
100256100256
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
100257100257
case 5 /* None */:
100258100258
case 4 /* String */:
100259-
return validIdentiferResult;
100259+
return validIdentifierResult;
100260100260
default:
100261100261
ts.Debug.assertNever(kind);
100262100262
}

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33615,7 +33615,7 @@ var ts;
3361533615
return type;
3361633616
}
3361733617
// A reserved member name starts with two underscores, but the third character cannot be an underscore
33618-
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
33618+
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
3361933619
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
3362033620
// Symbol instance.
3362133621
function isReservedMemberName(name) {

0 commit comments

Comments
 (0)