summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/did_open_notification_completion_optional.json
blob: 5e919c80ab9972c747cd7676a1c0e192b9a40279 (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": "interface A {\n  b?: string;\n}\n\nconst o: A = {};\n\nfunction c(s: string) {}\n\nc(o.)"
    }
  }
}