mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
bbefceddb9
Fixes #10765
54 lines
948 B
JSON
54 lines
948 B
JSON
{
|
|
"textDocument": {
|
|
"uri": "file:///a/file01.ts"
|
|
},
|
|
"range": {
|
|
"start": {
|
|
"line": 1,
|
|
"character": 12
|
|
},
|
|
"end": {
|
|
"line": 1,
|
|
"character": 15
|
|
}
|
|
},
|
|
"context": {
|
|
"diagnostics": [
|
|
{
|
|
"range": {
|
|
"start": {
|
|
"line": 1,
|
|
"character": 12
|
|
},
|
|
"end": {
|
|
"line": 1,
|
|
"character": 15
|
|
}
|
|
},
|
|
"severity": 1,
|
|
"code": 2304,
|
|
"source": "deno-ts",
|
|
"message": "Cannot find name 'abc'."
|
|
},
|
|
{
|
|
"range": {
|
|
"start": {
|
|
"line": 2,
|
|
"character": 12
|
|
},
|
|
"end": {
|
|
"line": 2,
|
|
"character": 15
|
|
}
|
|
},
|
|
"severity": 1,
|
|
"code": 2304,
|
|
"source": "deno-ts",
|
|
"message": "Cannot find name 'def'."
|
|
}
|
|
],
|
|
"only": [
|
|
"quickfix"
|
|
]
|
|
}
|
|
}
|