mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
refactor(lsp): store all the assets in Rust when initializing (#14367)
This commit is contained in:
parent
12f7581ed9
commit
c0e3b6096d
6 changed files with 186 additions and 294 deletions
7
cli/tsc/compiler.d.ts
vendored
7
cli/tsc/compiler.d.ts
vendored
|
@ -46,7 +46,7 @@ declare global {
|
|||
type LanguageServerRequest =
|
||||
| ConfigureRequest
|
||||
| FindRenameLocationsRequest
|
||||
| GetAsset
|
||||
| GetAssets
|
||||
| GetApplicableRefactors
|
||||
| GetEditsForRefactor
|
||||
| GetCodeFixes
|
||||
|
@ -91,9 +91,8 @@ declare global {
|
|||
providePrefixAndSuffixTextForRename: boolean;
|
||||
}
|
||||
|
||||
interface GetAsset extends BaseLanguageServerRequest {
|
||||
method: "getAsset";
|
||||
specifier: string;
|
||||
interface GetAssets extends BaseLanguageServerRequest {
|
||||
method: "getAssets";
|
||||
}
|
||||
|
||||
interface GetApplicableRefactors extends BaseLanguageServerRequest {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue