summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/code_action_params_cache.json
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/lsp/code_action_params_cache.json')
-rw-r--r--cli/tests/testdata/lsp/code_action_params_cache.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/cli/tests/testdata/lsp/code_action_params_cache.json b/cli/tests/testdata/lsp/code_action_params_cache.json
new file mode 100644
index 000000000..61ae555a3
--- /dev/null
+++ b/cli/tests/testdata/lsp/code_action_params_cache.json
@@ -0,0 +1,41 @@
+{
+ "textDocument": {
+ "uri": "file:///a/file.ts"
+ },
+ "range": {
+ "start": {
+ "line": 0,
+ "character": 19
+ },
+ "end": {
+ "line": 0,
+ "character": 49
+ }
+ },
+ "context": {
+ "diagnostics": [
+ {
+ "range": {
+ "start": {
+ "line": 0,
+ "character": 19
+ },
+ "end": {
+ "line": 0,
+ "character": 49
+ }
+ },
+ "severity": 1,
+ "code": "no-cache",
+ "source": "deno",
+ "message": "Unable to load the remote module: \"https://deno.land/x/a/mod.ts\".",
+ "data": {
+ "specifier": "https://deno.land/x/a/mod.ts"
+ }
+ }
+ ],
+ "only": [
+ "quickfix"
+ ]
+ }
+}