diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/ast_src.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 79e5a608d..80b6967b8 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -2016,6 +2016,19 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
2016 | /// [Reference](https://doc.rust-lang.org/reference/macros.html) | 2016 | /// [Reference](https://doc.rust-lang.org/reference/macros.html) |
2017 | struct MacroItems: ModuleItemOwner { } | 2017 | struct MacroItems: ModuleItemOwner { } |
2018 | 2018 | ||
2019 | /// FIXME: (@edwin0cheng) add some documentation here. As per the writing | ||
2020 | /// of this comment this ast node is not used. | ||
2021 | /// | ||
2022 | /// ``` | ||
2023 | /// // FIXME: example here | ||
2024 | /// ``` | ||
2025 | /// | ||
2026 | /// [Reference](https://doc.rust-lang.org/reference/macros.html) | ||
2027 | struct MacroStmts { | ||
2028 | statements: [Stmt], | ||
2029 | Expr, | ||
2030 | } | ||
2031 | |||
2019 | /// List of items in an extern block. | 2032 | /// List of items in an extern block. |
2020 | /// | 2033 | /// |
2021 | /// ``` | 2034 | /// ``` |