summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/did_change_notification_mbc.json
blob: fed742d39664fc175694db8d9ee408e1ac1f7915 (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": 1,
            "character": 11
          },
          "end": {
            "line": 1,
            "character": 13
          }
        },
        "text": ""
      }
    ]
  }
}