-
Notifications
You must be signed in to change notification settings - Fork 105
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
react to new registration type for semantic tokens #401
Conversation
Codecov Report
@@ Coverage Diff @@
## master #401 +/- ##
==========================================
- Coverage 74.72% 72.52% -2.21%
==========================================
Files 566 569 +3
Lines 13640 13778 +138
Branches 1275 1291 +16
==========================================
- Hits 10192 9992 -200
- Misses 3448 3786 +338
Continue to review full report at Codecov.
|
@@ -36,7 +36,7 @@ public interface ISemanticTokensDeltaHandler : | |||
[Method(TextDocumentNames.SemanticTokensRange, Direction.ClientToServer)] | |||
[GenerateHandlerMethods] | |||
public interface ISemanticTokensRangeHandler : IJsonRpcRequestHandler<SemanticTokensRangeParams, SemanticTokens?>, | |||
IRegistration<SemanticTokensRegistrationOptions>, ICapability<SemanticTokensCapability>, IDoesNotParticipateInRegistration |
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.
These are just marker interfaces, so this shouldn't be a breaking change.
Merging in for now, no real breaking changes unless you're using the new client, which the current version won't work with. |
Fixes #397
Reference commit for latest vscode client: microsoft/vscode-languageserver-node@bb85e80
LSP reference: microsoft/language-server-protocol#1107