summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/code_action_resolve_response_refactor.json
blob: 721a76a6b82b11df66d8e2bfc5739a8e3083c835 (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
{
  "title": "Extract to interface",
  "kind": "refactor.extract.interface",
  "edit": {
    "documentChanges": [
      {
        "textDocument": {
          "uri": "file:///a/file.ts",
          "version": 1
        },
        "edits": [
          {
            "range": {
              "start": {
                "line": 0,
                "character": 0
              },
              "end": {
                "line": 0,
                "character": 0
              }
            },
            "newText": "interface NewType {\n  a?: number;\n  b?: string;\n}\n\n"
          },
          {
            "range": {
              "start": {
                "line": 0,
                "character": 7
              },
              "end": {
                "line": 0,
                "character": 33
              }
            },
            "newText": "NewType"
          }
        ]
      }
    ]
  },
  "isPreferred": true,
  "data": {
    "specifier": "file:///a/file.ts",
    "range": {
      "start": {
        "line": 0,
        "character": 7
      },
      "end": {
        "line": 0,
        "character": 33
      }
    },
    "refactorName": "Extract type",
    "actionName": "Extract to interface"
  }
}