about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev
diff options
context:
space:
mode:
authorpat-nel87 <71235856+pat-nel87@users.noreply.github.com>2023-03-26 11:20:56 -0400
committerGitHub <noreply@github.com>2023-03-26 11:20:56 -0400
commitaf489afeb7b6ca6f31848c4141652f4dcb2a7fa6 (patch)
treef28bc68704d4bc0dc9a4490258b569f77e47d629 /src/tools/rust-analyzer/docs/dev
parent21549dac539dc220f052d038ec643645cedbbd6d (diff)
parent89c2e3d3d75486e52473de3ae38f0ca6efeffef2 (diff)
downloadrust-af489afeb7b6ca6f31848c4141652f4dcb2a7fa6.tar.gz
rust-af489afeb7b6ca6f31848c4141652f4dcb2a7fa6.zip
Merge branch 'master' into Issue-107957-black_box_docs
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev')
-rw-r--r--src/tools/rust-analyzer/docs/dev/lsp-extensions.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/lsp-extensions.md b/src/tools/rust-analyzer/docs/dev/lsp-extensions.md
index c3623a5cc46..de142203208 100644
--- a/src/tools/rust-analyzer/docs/dev/lsp-extensions.md
+++ b/src/tools/rust-analyzer/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`