summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/prepare_call_hierarchy_did_open_notification.json
blob: a75bd3a53cf0e4944e9e1d194c19090d1c97bc17 (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": "function foo() {\n  return false;\n}\n\nclass Bar {\n  baz() {\n    return foo();\n  }\n}\n\nfunction main() {\n  const bar = new Bar();\n  bar.baz();\n}\n\nmain();"
    }
  }
}