diff options
Diffstat (limited to 'cli/tests/lsp/code_action_request.json')
-rw-r--r-- | cli/tests/lsp/code_action_request.json | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/cli/tests/lsp/code_action_request.json b/cli/tests/lsp/code_action_request.json deleted file mode 100644 index af6cbee8b..000000000 --- a/cli/tests/lsp/code_action_request.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "jsonrpc": "2.0", - "id": 2, - "method": "textDocument/codeAction", - "params": { - "textDocument": { - "uri": "file:///a/file.ts" - }, - "range": { - "start": { - "line": 1, - "character": 2 - }, - "end": { - "line": 1, - "character": 7 - } - }, - "context": { - "diagnostics": [ - { - "range": { - "start": { - "line": 1, - "character": 2 - }, - "end": { - "line": 1, - "character": 7 - } - }, - "severity": 1, - "code": 1308, - "source": "deno-ts", - "message": "'await' expressions are only allowed within async functions and at the top levels of modules.", - "relatedInformation": [] - } - ], - "only": [ - "quickfix" - ] - } - } -} |