mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 02:22:40 +00:00
feat(lsp): Implement textDocument/semanticTokens/full (#10233)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
This commit is contained in:
parent
b6203cb465
commit
6d404ec54b
11 changed files with 648 additions and 3 deletions
|
@ -660,6 +660,16 @@ delete Object.prototype.__proto__;
|
|||
),
|
||||
);
|
||||
}
|
||||
case "getEncodedSemanticClassifications": {
|
||||
return respond(
|
||||
id,
|
||||
languageService.getEncodedSemanticClassifications(
|
||||
request.specifier,
|
||||
request.span,
|
||||
ts.SemanticClassificationFormat.TwentyTwenty,
|
||||
),
|
||||
);
|
||||
}
|
||||
case "getImplementation": {
|
||||
return respond(
|
||||
id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue