diff options
author | Leander Tentrup <[email protected]> | 2020-06-19 23:02:42 +0100 |
---|---|---|
committer | Leander Tentrup <[email protected]> | 2020-06-19 23:02:42 +0100 |
commit | df5b37cb612664985f1ba0a24280621809bd5533 (patch) | |
tree | 44ffaf8580e547ad6676ca5bda5d19209eb8aae6 /crates/ra_ide/src/syntax_highlighting | |
parent | 491eda61e30c90329e18f49499278fe3d7e9ccad (diff) |
Syntax highlighting for documentation comments on macro definitions
Diffstat (limited to 'crates/ra_ide/src/syntax_highlighting')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting/tests.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting/tests.rs b/crates/ra_ide/src/syntax_highlighting/tests.rs index b4d56a7a0..93a276ffe 100644 --- a/crates/ra_ide/src/syntax_highlighting/tests.rs +++ b/crates/ra_ide/src/syntax_highlighting/tests.rs | |||
@@ -344,6 +344,15 @@ impl Foo { | |||
344 | true | 344 | true |
345 | } | 345 | } |
346 | } | 346 | } |
347 | |||
348 | /// ``` | ||
349 | /// noop!(1); | ||
350 | /// ``` | ||
351 | macro_rules! noop { | ||
352 | ($expr:expr) => { | ||
353 | $expr | ||
354 | } | ||
355 | } | ||
347 | "# | 356 | "# |
348 | .trim(), | 357 | .trim(), |
349 | "crates/ra_ide/src/snapshots/highlight_doctest.html", | 358 | "crates/ra_ide/src/snapshots/highlight_doctest.html", |