diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/debugging.md | 8 | ||||
-rw-r--r-- | docs/dev/style.md | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/docs/dev/debugging.md b/docs/dev/debugging.md index 8c48fd5a1..cc7a790ff 100644 --- a/docs/dev/debugging.md +++ b/docs/dev/debugging.md | |||
@@ -57,6 +57,14 @@ To apply changes to an already running debug process, press <kbd>Ctrl+Shift+P</k | |||
57 | 57 | ||
58 | - Go back to the `[Extension Development Host]` instance and hover over a Rust variable and your breakpoint should hit. | 58 | - Go back to the `[Extension Development Host]` instance and hover over a Rust variable and your breakpoint should hit. |
59 | 59 | ||
60 | If you need to debug the server from the very beginning, including its initialization code, you can use the `--wait-dbg` command line argument or `RA_WAIT_DBG` environment variable. The server will spin at the beginning of the `try_main` function (see `crates\rust-analyzer\src\bin\main.rs`) | ||
61 | ```rust | ||
62 | let mut d = 4; | ||
63 | while d == 4 { // set a breakpoint here and change the value | ||
64 | d = 4; | ||
65 | } | ||
66 | ``` | ||
67 | |||
60 | ## Demo | 68 | ## Demo |
61 | 69 | ||
62 | - [Debugging TypeScript VScode extension](https://www.youtube.com/watch?v=T-hvpK6s4wM). | 70 | - [Debugging TypeScript VScode extension](https://www.youtube.com/watch?v=T-hvpK6s4wM). |
diff --git a/docs/dev/style.md b/docs/dev/style.md index 6dc6868c2..0c5e2ad33 100644 --- a/docs/dev/style.md +++ b/docs/dev/style.md | |||
@@ -232,7 +232,7 @@ if idx >= len { | |||
232 | ## Assertions | 232 | ## Assertions |
233 | 233 | ||
234 | Assert liberally. | 234 | Assert liberally. |
235 | Prefer `stdx::assert_never!` to standard `assert!`. | 235 | Prefer `stdx::never!` to standard `assert!`. |
236 | 236 | ||
237 | ## Getters & Setters | 237 | ## Getters & Setters |
238 | 238 | ||