mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
26 lines
431 B
JSON
26 lines
431 B
JSON
|
{
|
||
|
"jsonrpc": "2.0",
|
||
|
"method": "textDocument/didChange",
|
||
|
"params": {
|
||
|
"textDocument": {
|
||
|
"uri": "file:///a/file.ts",
|
||
|
"version": 2
|
||
|
},
|
||
|
"contentChanges": [
|
||
|
{
|
||
|
"range": {
|
||
|
"start": {
|
||
|
"line": 477,
|
||
|
"character": 4
|
||
|
},
|
||
|
"end": {
|
||
|
"line": 477,
|
||
|
"character": 9
|
||
|
}
|
||
|
},
|
||
|
"text": "error"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|