From 7a49165f5d5c8186edd04f874eae8a98e39d3df6 Mon Sep 17 00:00:00 2001 From: veetaha Date: Sun, 10 May 2020 19:11:22 +0300 Subject: Remove MacroStmts as per edwin0cheng --- xtask/src/ast_src.rs | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'xtask') diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 47a5d1d91..ab50eee36 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs @@ -2010,21 +2010,6 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { /// [Reference](https://doc.rust-lang.org/reference/macros.html) struct MacroItems: ModuleItemOwner { } - // TODO: Idk what I am writing here, please don't believe these words. - // TODO: clarify @matklad @edwin0cheng - /// Macro statements is a node that holds an statements created by expanding a macro. - /// - /// ``` - /// foo!(); // expands into some statements -v - /// // ❰ foo_crate::bar(); ❱ - /// ``` - /// - /// [Reference](https://doc.rust-lang.org/reference/macros.html) - struct MacroStmts { - statements: [Stmt], - Expr, - } - /// List of items in an extern block. /// /// ``` -- cgit v1.2.3