summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/code_action_response.json
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/lsp/code_action_response.json')
-rw-r--r--cli/tests/lsp/code_action_response.json90
1 files changed, 0 insertions, 90 deletions
diff --git a/cli/tests/lsp/code_action_response.json b/cli/tests/lsp/code_action_response.json
deleted file mode 100644
index ab30898f8..000000000
--- a/cli/tests/lsp/code_action_response.json
+++ /dev/null
@@ -1,90 +0,0 @@
-[
- {
- "title": "Add async modifier to containing function",
- "kind": "quickfix",
- "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": []
- }
- ],
- "edit": {
- "documentChanges": [
- {
- "textDocument": {
- "uri": "file:///a/file.ts",
- "version": 1
- },
- "edits": [
- {
- "range": {
- "start": {
- "line": 0,
- "character": 7
- },
- "end": {
- "line": 0,
- "character": 7
- }
- },
- "newText": "async "
- },
- {
- "range": {
- "start": {
- "line": 0,
- "character": 21
- },
- "end": {
- "line": 0,
- "character": 25
- }
- },
- "newText": "Promise<void>"
- }
- ]
- }
- ]
- }
- },
- {
- "title": "Add all missing 'async' modifiers",
- "kind": "quickfix",
- "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": []
- }
- ],
- "data": {
- "specifier": "file:///a/file.ts",
- "fixId": "fixAwaitInSyncFunction"
- }
- }
-]