mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
bbefceddb9
Fixes #10765
51 lines
996 B
JSON
51 lines
996 B
JSON
{
|
|
"title": "Add all missing imports",
|
|
"kind": "quickfix",
|
|
"diagnostics": [
|
|
{
|
|
"range": {
|
|
"start": {
|
|
"line": 1,
|
|
"character": 12
|
|
},
|
|
"end": {
|
|
"line": 1,
|
|
"character": 15
|
|
}
|
|
},
|
|
"severity": 1,
|
|
"code": 2304,
|
|
"source": "deno-ts",
|
|
"message": "Cannot find name 'abc'."
|
|
}
|
|
],
|
|
"edit": {
|
|
"documentChanges": [
|
|
{
|
|
"textDocument": {
|
|
"uri": "file:///a/file01.ts",
|
|
"version": 1
|
|
},
|
|
"edits": [
|
|
{
|
|
"range": {
|
|
"start": {
|
|
"line": 0,
|
|
"character": 0
|
|
},
|
|
"end": {
|
|
"line": 0,
|
|
"character": 0
|
|
}
|
|
},
|
|
"newText": "import { abc,def } from \"./file00.ts\";\n"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"data": {
|
|
"specifier": "file:///a/file01.ts",
|
|
"fixId": "fixMissingImport"
|
|
}
|
|
}
|