0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/cli/lsp
Bartek Iwańczuk ce8acee44d refactor(permissions): add PermissionsContainer struct for internal mutability (#17134)
Turns out we were cloning permissions which after prompting were discarded,
so the state of permissions was never preserved. To handle that we need to store
all permissions behind "Arc<Mutex<>>" (because there are situations where we
need to send them to other thread).

Testing and benching code still uses "Permissions" in most places - it's undesirable
to share the same permission set between various test/bench files - otherwise
granting or revoking permissions in one file would influence behavior of other test
files.
2023-01-13 11:20:12 -05:00
..
testing refactor(permissions): add PermissionsContainer struct for internal mutability (#17134) 2023-01-13 11:20:12 -05:00
analysis.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
cache.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
capabilities.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
client.rs refactor(lsp): migrate from lspower back to tower-lsp (#14163) 2022-04-03 14:17:30 +10:00
code_lens.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
completions.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
config.rs fix(lsp): treat empty string config value as None (#17227) 2023-01-05 13:06:20 +01:00
diagnostics.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
documents.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
language_server.rs fix(lsp): don't error if completionItem/resolve request fails (#17250) 2023-01-05 13:06:21 +01:00
logging.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
lsp_custom.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
mod.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
parent_process_checker.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
path_to_regex.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
performance.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
README.md feat(lsp): improve registry completion suggestions (#13023) 2021-12-14 06:24:11 +11:00
refactor.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
registries.rs refactor(permissions): add PermissionsContainer struct for internal mutability (#17134) 2023-01-13 11:20:12 -05:00
repl.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
semantic_tokens.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
text.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
tsc.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01:00
urls.rs chore: update copyright year to 2023 (#17247) 2023-01-05 13:05:49 +01: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.