summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/prepare_call_hierarchy_request.json
diff options
context:
space:
mode:
authorJean Pierre <jeanp413@hotmail.com>2021-04-19 00:11:26 -0500
committerGitHub <noreply@github.com>2021-04-19 15:11:26 +1000
commit65a2a04d3bf116c1dee8d2528ec18e71ca4d7bf2 (patch)
tree6d91d77583d82c0145f8f90ccf4e83bc2ae38228 /cli/tests/lsp/prepare_call_hierarchy_request.json
parent0552eaf569ef910b0d132b6e60758f17a4519d91 (diff)
feat(lsp): implement textDocument/prepareCallHierarchy (#10061)
Diffstat (limited to 'cli/tests/lsp/prepare_call_hierarchy_request.json')
-rw-r--r--cli/tests/lsp/prepare_call_hierarchy_request.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/tests/lsp/prepare_call_hierarchy_request.json b/cli/tests/lsp/prepare_call_hierarchy_request.json
new file mode 100644
index 000000000..1f469ee8b
--- /dev/null
+++ b/cli/tests/lsp/prepare_call_hierarchy_request.json
@@ -0,0 +1,14 @@
+{
+ "jsonrpc": "2.0",
+ "id": 2,
+ "method": "textDocument/prepareCallHierarchy",
+ "params": {
+ "textDocument": {
+ "uri": "file:///a/file.ts"
+ },
+ "position": {
+ "line": 5,
+ "character": 3
+ }
+ }
+}