diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2023-03-13 10:42:24 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2023-03-13 10:42:24 +0200 |
| commit | b2f6fd4f961fc7e4fbfdb80cae2e6065f8436f15 (patch) | |
| tree | bcdfaabb2821bb74ce6313de7e2741e4625bf74b /docs/dev | |
| parent | 15b867b5db35d67e0f1026b55f22ba6b25ad6dcb (diff) | |
| download | rust-b2f6fd4f961fc7e4fbfdb80cae2e6065f8436f15.tar.gz rust-b2f6fd4f961fc7e4fbfdb80cae2e6065f8436f15.zip | |
:arrow_up: rust-analyzer
Diffstat (limited to 'docs/dev')
| -rw-r--r-- | docs/dev/lsp-extensions.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index c3623a5cc46..de142203208 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md @@ -1,5 +1,5 @@ <!--- -lsp_ext.rs hash: d87477896dfe41d4 +lsp_ext.rs hash: 37f31ae648632897 If you need to change the above hash to make the test pass, please check if you need to adjust this doc as well and ping this issue: @@ -527,6 +527,17 @@ Primarily for debugging, but very useful for all people working on rust-analyzer Returns a textual representation of the HIR of the function containing the cursor. For debugging or when working on rust-analyzer itself. +## View Mir + +**Method:** `rust-analyzer/viewMir` + +**Request:** `TextDocumentPositionParams` + +**Response:** `string` + +Returns a textual representation of the MIR of the function containing the cursor. +For debugging or when working on rust-analyzer itself. + ## View File Text **Method:** `rust-analyzer/viewFileText` |
