summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/signature_help_did_change_notification.json
blob: f88eaa9ffd6cd99a7072ca8ea4c049a79c01613f (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
{
  "jsonrpc": "2.0",
  "method": "textDocument/didChange",
  "params": {
    "textDocument": {
      "uri": "file:///a/file.ts",
      "version": 2
    },
    "contentChanges": [
      {
        "range": {
          "start": {
            "line": 9,
            "character": 4
          },
          "end": {
            "line": 9,
            "character": 4
          }
        },
        "text": "123, "
      }
    ]
  }
}