summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/code_action_params_deadlock.json
blob: be0e317e1dfe14518d83e7e718635da8bc097b37 (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
{
  "textDocument": {
    "uri": "file:///a/file.ts"
  },
  "range": {
    "start": {
      "line": 441,
      "character": 33
    },
    "end": {
      "line": 441,
      "character": 42
    }
  },
  "context": {
    "diagnostics": [
      {
        "range": {
          "start": {
            "line": 441,
            "character": 33
          },
          "end": {
            "line": 441,
            "character": 42
          }
        },
        "severity": 1,
        "code": 7031,
        "source": "deno-ts",
        "message": "Binding element 'debugFlag' implicitly has an 'any' type."
      }
    ],
    "only": [
      "quickfix"
    ]
  }
}