Skip to content
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

Fix class literal keyword semantic token #1753

Conversation

0dinD
Copy link
Contributor

@0dinD 0dinD commented May 2, 2021

Fixes redhat-developer/vscode-java#1921

The cause of the issue is that some expressions with a period after them are recovered as TypeLiterals, which causes the semantic token visitor to put a keyword semantic token there. To fix this, I added a check to avoid adding the keyword token for recovered TypeLiterals.

Signed-off-by: 0dinD <zerodind@gmail.com>
@0dinD
Copy link
Contributor Author

0dinD commented May 2, 2021

Not sure why the test failed, it shouldn't have anything to do with my changes (and it passes when running locally on my machine).

@snjeza
Copy link
Contributor

snjeza commented May 2, 2021

test this please

@rgrunber
Copy link
Contributor

rgrunber commented May 4, 2021

Just wanted to confirm this is the expected behaviour :

recovered_as_type_literal_not_keyword

I would have thought the font of 'keyword' would have been preferred (as opposed to the bolder font) but I guess we can only guarantee the token is correct, and styling is beyond the scope of the language server. If that's the case, I'm fine with merging this.

@0dinD
Copy link
Contributor Author

0dinD commented May 5, 2021

Styling is indeed beyond the scope of the language server, but the token isn't really correct either. The reason why string goes bold is that it gets assigned the class token, because JDT thinks that string. is a recovered class literal. Not sure if there's anything we can do to improve this (I imagine it would require fixes in JDT Core), and unfortunately I don't have time to investigate it right now. What we could also do as a workaround is avoid adding the token for the class if it's a recovered class literal, but I'm not sure if that would be better or worse, and if it could have any side effects. You can try it out yourself by moving this line into the if-statement below.

Note that the issue you've mentioned was present before this PR as well, so it's not a regression.

@rgrunber rgrunber self-requested a review May 5, 2021 14:31
Copy link
Contributor

@rgrunber rgrunber left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, the underlying SimpleName's binding is recognized as a class it seems. I guess we can't entirely ignore the recovered nodes/bindings because there's probably cases where they make good assumptions.

Change looks good to me though.

@rgrunber rgrunber merged commit 5e56202 into eclipse-jdtls:master May 5, 2021
@rgrunber rgrunber added this to the Mid May 2021 milestone May 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

A 'keyword' semantic token will sometimes appear when typing an expression
3 participants