diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/ast_src.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index ed1bac091..47a5d1d91 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -1577,7 +1577,8 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
1577 | /// [Reference](https://doc.rust-lang.org/reference/attributes.html) | 1577 | /// [Reference](https://doc.rust-lang.org/reference/attributes.html) |
1578 | struct Attr { T![#], T![!], T!['['], Path, T![=], input: AttrInput, T![']'] } | 1578 | struct Attr { T![#], T![!], T!['['], Path, T![=], input: AttrInput, T![']'] } |
1579 | 1579 | ||
1580 | /// // TODO: clarify on this AST type @edwin0cheng | 1580 | /// Stores a list of lexer tokens and other `TokenTree`s. |
1581 | /// It appears in attributes, macro_rules and macro call (foo!) | ||
1581 | /// | 1582 | /// |
1582 | /// ``` | 1583 | /// ``` |
1583 | /// macro_call! ❰ { my syntax here } ❱; | 1584 | /// macro_call! ❰ { my syntax here } ❱; |