0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 09:57:11 -05:00
deno/cli/lsp
Matt Mastracci fcb5a89d91 refactor(core): Improve ergonomics of managing ASCII strings (#18498)
This is a follow-on to the earlier work in reducing string copies,
mainly focused on ensuring that ASCII strings are easy to provide to the
JS runtime.

While we are replacing a 16-byte reference in a number of places with a
24-byte structure (measured via `std::mem::size_of`), the reduction in
copies wins out over the additional size of the arguments passed into
functions.

Benchmarking shows approximately the same if not slightly less wallclock
time/instructions retired, but I believe this continues to open up
further refactoring opportunities.
2023-04-12 15:49:39 +02:00
..
testing
analysis.rs
cache.rs
capabilities.rs
client.rs fix(repl): disable language server document preloading in the repl (#18543) 2023-04-01 17:34:08 -04:00
code_lens.rs fix(lsp): textDocument/references should respect includeDeclaration (#18496) 2023-03-31 11:43:20 -06:00
completions.rs fix(repl): disable language server document preloading in the repl (#18543) 2023-04-01 17:34:08 -04:00
config.rs fix(lsp): add a document preload file system entry limit (#18553) 2023-04-01 17:34:09 -04:00
diagnostics.rs fix(repl): disable language server document preloading in the repl (#18543) 2023-04-01 17:34:08 -04:00
documents.rs fix(lsp): add a document preload file system entry limit (#18553) 2023-04-01 17:34:09 -04:00
language_server.rs fix(lsp): add a document preload file system entry limit (#18553) 2023-04-01 17:34:09 -04:00
logging.rs fix(repl): improve package.json support (#18497) 2023-03-31 11:43:20 -06:00
lsp_custom.rs
mod.rs
parent_process_checker.rs
path_to_regex.rs
performance.rs
README.md
refactor.rs
registries.rs
repl.rs fix(repl): improve package.json support (#18497) 2023-03-31 11:43:20 -06:00
semantic_tokens.rs
text.rs
tsc.rs refactor(core): Improve ergonomics of managing ASCII strings (#18498) 2023-04-12 15:49:39 +02:00
urls.rs

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.