summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/code_action_response.json
blob: ab30898f8ec0a42ab98d4505eefd9c3df83ed6c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[
  {
    "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"
    }
  }
]