diff options
Diffstat (limited to 'crates/ra_syntax/src/ast/generated')
-rw-r--r-- | crates/ra_syntax/src/ast/generated/nodes.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs index 29345dc05..72977a3c6 100644 --- a/crates/ra_syntax/src/ast/generated/nodes.rs +++ b/crates/ra_syntax/src/ast/generated/nodes.rs | |||
@@ -2461,12 +2461,8 @@ impl ConstArg { | |||
2461 | pub fn eq_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![=]) } | 2461 | pub fn eq_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![=]) } |
2462 | pub fn block_expr(&self) -> Option<BlockExpr> { support::child(&self.syntax) } | 2462 | pub fn block_expr(&self) -> Option<BlockExpr> { support::child(&self.syntax) } |
2463 | } | 2463 | } |
2464 | /// Macro items is a node that holds all the items created by expanding a macro. | 2464 | /// FIXME: (@edwin0cheng) Remove it to use ItemList instead |
2465 | /// | 2465 | /// https://github.com/rust-analyzer/rust-analyzer/pull/4083#discussion_r422666243 |
2466 | /// ``` | ||
2467 | /// foo!(); // expands into some items -v | ||
2468 | /// // ❰ struct Foo; impl Bar for Foo; ❱ | ||
2469 | /// ``` | ||
2470 | /// | 2466 | /// |
2471 | /// [Reference](https://doc.rust-lang.org/reference/macros.html) | 2467 | /// [Reference](https://doc.rust-lang.org/reference/macros.html) |
2472 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 2468 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |