Skip to content

Commit

Permalink
Merge branch 'master' into fix-intersection-target-excess-props-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Apr 16, 2019
2 parents b7f9326 + f617d16 commit f54e5ab
Show file tree
Hide file tree
Showing 107 changed files with 4,760 additions and 1,965 deletions.
8 changes: 4 additions & 4 deletions lib/tsserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -33624,7 +33624,7 @@ var ts;
return type;
}
// A reserved member name starts with two underscores, but the third character cannot be an underscore
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
// Symbol instance.
function isReservedMemberName(name) {
Expand Down Expand Up @@ -99911,9 +99911,9 @@ var ts;
|| ts.isKnownSymbol(symbol)) {
return undefined;
}
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
if (ts.isIdentifierText(name, target))
return validIdentiferResult;
return validIdentifierResult;
switch (kind) {
case 3 /* MemberLike */:
return undefined;
Expand All @@ -99926,7 +99926,7 @@ var ts;
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
case 5 /* None */:
case 4 /* String */:
return validIdentiferResult;
return validIdentifierResult;
default:
ts.Debug.assertNever(kind);
}
Expand Down
8 changes: 4 additions & 4 deletions lib/tsserverlibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -33623,7 +33623,7 @@ var ts;
return type;
}
// A reserved member name starts with two underscores, but the third character cannot be an underscore
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
// Symbol instance.
function isReservedMemberName(name) {
Expand Down Expand Up @@ -100250,9 +100250,9 @@ var ts;
|| ts.isKnownSymbol(symbol)) {
return undefined;
}
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
if (ts.isIdentifierText(name, target))
return validIdentiferResult;
return validIdentifierResult;
switch (kind) {
case 3 /* MemberLike */:
return undefined;
Expand All @@ -100265,7 +100265,7 @@ var ts;
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
case 5 /* None */:
case 4 /* String */:
return validIdentiferResult;
return validIdentifierResult;
default:
ts.Debug.assertNever(kind);
}
Expand Down
8 changes: 4 additions & 4 deletions lib/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -33614,7 +33614,7 @@ var ts;
return type;
}
// A reserved member name starts with two underscores, but the third character cannot be an underscore
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
// Symbol instance.
function isReservedMemberName(name) {
Expand Down Expand Up @@ -100241,9 +100241,9 @@ var ts;
|| ts.isKnownSymbol(symbol)) {
return undefined;
}
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
if (ts.isIdentifierText(name, target))
return validIdentiferResult;
return validIdentifierResult;
switch (kind) {
case 3 /* MemberLike */:
return undefined;
Expand All @@ -100256,7 +100256,7 @@ var ts;
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
case 5 /* None */:
case 4 /* String */:
return validIdentiferResult;
return validIdentifierResult;
default:
ts.Debug.assertNever(kind);
}
Expand Down
8 changes: 4 additions & 4 deletions lib/typescriptServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -33614,7 +33614,7 @@ var ts;
return type;
}
// A reserved member name starts with two underscores, but the third character cannot be an underscore
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
// Symbol instance.
function isReservedMemberName(name) {
Expand Down Expand Up @@ -100241,9 +100241,9 @@ var ts;
|| ts.isKnownSymbol(symbol)) {
return undefined;
}
var validIdentiferResult = { name: name, needsConvertPropertyAccess: false };
var validIdentifierResult = { name: name, needsConvertPropertyAccess: false };
if (ts.isIdentifierText(name, target))
return validIdentiferResult;
return validIdentifierResult;
switch (kind) {
case 3 /* MemberLike */:
return undefined;
Expand All @@ -100256,7 +100256,7 @@ var ts;
return name.charCodeAt(0) === 32 /* space */ ? undefined : { name: name, needsConvertPropertyAccess: true };
case 5 /* None */:
case 4 /* String */:
return validIdentiferResult;
return validIdentifierResult;
default:
ts.Debug.assertNever(kind);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/typingsInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -33615,7 +33615,7 @@ var ts;
return type;
}
// A reserved member name starts with two underscores, but the third character cannot be an underscore
// or the @ symbol. A third underscore indicates an escaped form of an identifer that started
// or the @ symbol. A third underscore indicates an escaped form of an identifier that started
// with at least two underscores. The @ character indicates that the name is denoted by a well known ES
// Symbol instance.
function isReservedMemberName(name) {
Expand Down
Loading

0 comments on commit f54e5ab

Please sign in to comment.