blob: 57559cf3c4c72ddca7ad11b83070b03db10bd67e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"jsonrpc": "2.0",
"method": "textDocument/didOpen",
"params": {
"textDocument": {
"uri": "file:///a/file.ts",
"languageId": "typescript",
"version": 1,
"text": "export function a(): void {\n await Promise.resolve(\"a\");\n}\n\nexport function b(): void {\n await Promise.resolve(\"b\");\n}\n"
}
}
}
|