summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/code_action_resolve_response.json
blob: e3f5b3f0edf1859d17e3b9979b8646c4b24c0084 (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
91
{
  "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": []
    }
  ],
  "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>"
          },
          {
            "range": {
              "start": {
                "line": 4,
                "character": 7
              },
              "end": {
                "line": 4,
                "character": 7
              }
            },
            "newText": "async "
          },
          {
            "range": {
              "start": {
                "line": 4,
                "character": 21
              },
              "end": {
                "line": 4,
                "character": 25
              }
            },
            "newText": "Promise<void>"
          }
        ]
      }
    ]
  },
  "data": {
    "specifier": "file:///a/file.ts",
    "fixId": "fixAwaitInSyncFunction"
  }
}