deno/cli/tests/lsp/did_open_notification.json
2020-12-07 21:46:39 +11:00

13 lines
236 B
JSON

{
"jsonrpc": "2.0",
"method": "textDocument/didOpen",
"params": {
"textDocument": {
"uri": "file:///a/file.ts",
"languageId": "typescript",
"version": 1,
"text": "console.log(Deno.args);\n"
}
}
}