From e368c5d0f9d69e69438cb0a8a8deb49d7b02901a Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Mon, 8 Feb 2021 21:45:10 +1100 Subject: feat(lsp): add implementations code lens (#9441) --- cli/tests/lsp/did_open_notification_cl_impl.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cli/tests/lsp/did_open_notification_cl_impl.json (limited to 'cli/tests/lsp/did_open_notification_cl_impl.json') diff --git a/cli/tests/lsp/did_open_notification_cl_impl.json b/cli/tests/lsp/did_open_notification_cl_impl.json new file mode 100644 index 000000000..eabcd7ccc --- /dev/null +++ b/cli/tests/lsp/did_open_notification_cl_impl.json @@ -0,0 +1,12 @@ +{ + "jsonrpc": "2.0", + "method": "textDocument/didOpen", + "params": { + "textDocument": { + "uri": "file:///a/file.ts", + "languageId": "typescript", + "version": 1, + "text": "interface A {\n b(): void;\n}\n\nclass B implements A {\n b() {\n console.log(\"b\");\n }\n}\n" + } + } +} -- cgit v1.2.3