1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
denoland-deno/cli/lsp
David Sherret eef96d1414
refactor: break up ProcState (#18707)
1. Breaks up functionality within `ProcState` into several other structs
to break out the responsibilities (`ProcState` is only a data struct
now).
2. Moves towards being able to inject dependencies more easily and have
functionality only require what it needs.
3. Exposes `Arc<T>` around the "service structs" instead of it being
embedded within them. The idea behind embedding them was to reduce the
verbosity of needing to pass around `Arc<...>`, but I don't think it was
exactly working and as we move more of these structs to be more
injectable I don't think the extra verbosity will be a big deal.
2023-04-18 17:41:52 +02:00
..
testing refactor(cli): move runTests() and runBenchmarks() to rust (#18563) 2023-04-18 17:41:51 +02:00
analysis.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
cache.rs refactor: use deno_graph for npm specifiers (#17858) 2023-02-22 14:15:25 -05:00
capabilities.rs refactor: remove usages of map_or / map_or_else (#18212) 2023-03-15 17:46:36 -04:00
client.rs fix(repl): disable language server document preloading in the repl (#18543) 2023-04-01 17:34:08 -04:00
code_lens.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
completions.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
config.rs fix(lsp): add a document preload file system entry limit (#18553) 2023-04-01 17:34:09 -04:00
diagnostics.rs refactor(npm): use deno_npm and deno_semver (#18602) 2023-04-12 15:52:03 +02:00
documents.rs refactor: break up ProcState (#18707) 2023-04-18 17:41:52 +02:00
language_server.rs refactor: break up ProcState (#18707) 2023-04-18 17:41:52 +02:00
logging.rs fix(repl): improve package.json support (#18497) 2023-03-31 11:43:20 -06:00
lsp_custom.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
mod.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
parent_process_checker.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
path_to_regex.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
performance.rs refactor(lsp): fewer clones (#17551) 2023-01-26 23:24:03 +01:00
README.md feat(lsp): improve registry completion suggestions (#13023) 2021-12-14 06:24:11 +11:00
refactor.rs refactor(lsp): fewer clones (#17551) 2023-01-26 23:24:03 +01:00
registries.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
repl.rs fix(repl): improve package.json support (#18497) 2023-03-31 11:43:20 -06:00
semantic_tokens.rs chore: use rustfmt imports_granularity option (#17421) 2023-01-14 23:18:58 -05:00
text.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
tsc.rs refactor(cli,ext,ops): cleanup regex with lazy-regex (#17296) 2023-04-18 17:41:50 +02:00
urls.rs refactor(lsp): add LspClientUrl (#18376) 2023-03-23 14:23:04 +00:00

Deno Language Server

The Deno Language Server provides a server implementation of the Language Server Protocol which is specifically tailored to provide a Deno view of code. It is integrated into the command line and can be started via the lsp sub-command.

This documentation has been moved to the Deno manual.