diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-18 06:45:13 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 06:45:13 +1000 |
| commit | 27e7bb090e9d771c8f3e4ddba4dd956a4a56855b (patch) | |
| tree | 82cb99c1406fc94850bc3d5d66f8db40300860de /cli/tests/lsp/code_lens_response_impl.json | |
| parent | aecdbba2c25d08d771a4e4fbeb62cac60015a3bd (diff) | |
refactor: share test harness for lsp between bench and integration (#10659)
Diffstat (limited to 'cli/tests/lsp/code_lens_response_impl.json')
| -rw-r--r-- | cli/tests/lsp/code_lens_response_impl.json | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/cli/tests/lsp/code_lens_response_impl.json b/cli/tests/lsp/code_lens_response_impl.json new file mode 100644 index 000000000..b0073a23f --- /dev/null +++ b/cli/tests/lsp/code_lens_response_impl.json @@ -0,0 +1,50 @@ +[ + { + "range": { + "start": { + "line": 0, + "character": 10 + }, + "end": { + "line": 0, + "character": 11 + } + }, + "data": { + "specifier": "file:///a/file.ts", + "source": "implementations" + } + }, + { + "range": { + "start": { + "line": 0, + "character": 10 + }, + "end": { + "line": 0, + "character": 11 + } + }, + "data": { + "specifier": "file:///a/file.ts", + "source": "references" + } + }, + { + "range": { + "start": { + "line": 4, + "character": 6 + }, + "end": { + "line": 4, + "character": 7 + } + }, + "data": { + "specifier": "file:///a/file.ts", + "source": "references" + } + } +] |
