Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ES private field check #44648
ES private field check #44648
Changes from all commits
f04f22c
30dde52
31fa02b
307247c
61c677b
8292ee2
4723380
9f1c176
511ac22
337f7e8
d059c15
79eeebe
125df93
c6b2a21
320bc00
cc80c7d
ebbb063
ea4fd4b
8b78f01
01c7042
fc2b262
c007a12
40bd336
7982164
1cd313f
97f7d30
e672957
2b7425d
52b9f2a
476bf24
be26d0a
f7ddce5
01e0e60
913d044
7c49552
c6b039f
6f56c6a
c3b6c2a
5fbb2da
c924a51
27d494d
33c3b55
e3c25c9
74e56a6
8447934
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be cached on the private identifier? Is there a call that caches? lookupSymbolForPrivateIdentifierDeclaration doesn't, so I guess that there is a wrapper for it that does. This code should call that wrapper instead. (see comment about creating
checkPrivateIdentifier
-- that is probably the right place if it doesn't already exist.)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking about this overnight, it's probably enough to create
checkPrivateIdentifier
in this PR, and fix caching later. The problem predates this PR, but it means that programs with lots of private identifers are likely to have performance problems.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You were right, the symbol was cached. So not having to re-resolve the symbol when narrowing now.
Right now I am caching the symbol on the
BinaryExpression
parent. The only reason I am doing this is because otherwise 'findAllRefs' doesn't see the symbol. everything else seems to work if I store the symbol based on thePrivateIdentifier
. I'd like to address this, I'm thinking there must be a 'set' that PrivateIds need to be added so they are valid places for 'findAllRefs' to search.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we be concerned that a code path could reach this line of code before the symbol is set?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could put in a call to
checkPrivateIdentifierExpression
if the symbol comes back undefined to be safe.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For find-all-refs, you're possibly being tripped up by the fact
PrivateIdentifier
isn't handled byisExpressionNode
:TypeScript/src/compiler/utilities.ts
Line 1904 in 40bd336
called from here:
https://github.com/microsoft/TypeScript/blob/7c49552cd516da620b903edccc61af54d1872c3b/src/compiler/checker.ts#L40232
For an
Identifier
, we would perform a normal name resolution:https://github.com/microsoft/TypeScript/blob/7c49552cd516da620b903edccc61af54d1872c3b/src/compiler/checker.ts#L40245
Instead, you're storing the symbol on the parent binary expression and then looking it up at https://github.com/microsoft/TypeScript/blob/7c49552cd516da620b903edccc61af54d1872c3b/src/compiler/checker.ts#L40284, which seems strange. We don't normally store the symbol on
Identifier
references, since they can have multiple meanings, so it seems a bit strange to cache it for PrivateIdentifier (despite @sandersn's comment). However, since a PrivateIdentifier can't have anything other than a value meaning currently, we could probably store it on the NodeLinks for the id itself, rather than its parent expression.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks! Yes it was the
isExpressionNode
that was causing the find-all-refs issue. I had removed the oldPrivateIdentifierInInExpression
syntax kind from that predicate but not putPrivateIdentifier
s in.I rather than
PrivateIdentifier
always returning true forisExpressionNode
, it only returns true if it's in a valid position to be an 'expression'. This means the checker can useisExpressionNode
for the grammer checks.I did think about
utilities.ts
exporting a new more explicitisPrivateIdentifierInValidExpressionPosition
predicate for the checker to use instead but that didn't feel like it added much value.I am now caching the resolved symbol on the privateId itself, not the parent. As private-identifiers can only reference one member of a syntactically outer class, and not come from a different script/module. This seems safe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this wasn't happening in the tests. It did happen via the language server, and wasn't getting narrowed types on hover in vscode. I've added a call to
checkPrivateIdentifierExpression
when the symbol isundefined
which fixes the issue.Is there an alternative approach than checking for
undefined
, to see if the type-check has already happened? For the case when gettingundefined
is actually a cache-hit but because of a typo in the privateIdentifier it has no symbol to resolve to - yetcheckPrivateIdentifierExpression
would keep being called.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This error is not 100% correct. We could be inside a class body though this does match the existing errors when handling invalid privateIds.
https://www.typescriptlang.org/play?#code/MYGwhgzhAEDC0G8BQ1XQGYAoCUiVoICcBTAFwFdCA7aAYgAtiQQB7Abn1QF8keg
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like something we should be reporting this as a grammar error. Something like:
Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression
@DanielRosenwasser any thoughts on wording?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added that new error, and split the check into 3 levels.