From b22cf23ad1355af5b039f6da19aa69f57ed47b97 Mon Sep 17 00:00:00 2001 From: veetaha Date: Tue, 12 May 2020 23:58:51 +0300 Subject: Convert TODO about ParamList used in closures to a FIXME cc @matklad (you didn't comment on this one) --- xtask/src/ast_src.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 36f7ee675..394a7bc88 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs @@ -1784,7 +1784,6 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { /// [While expression reference](https://doc.rust-lang.org/reference/expressions/loop-expr.html#predicate-loops) struct Condition { T![let], Pat, T![=], Expr } - // TODO: this one is used by closure expressions too, but hey use pipes instead of parens /// Parameter list **declaration**. /// /// ``` @@ -1797,7 +1796,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { /// ``` /// /// [Reference](https://doc.rust-lang.org/reference/items/functions.html)ocs to codegen script - struct ParamList { + struct ParamList { // FIXME: this node is used by closure expressions too, but hey use pipes instead of parens... T!['('], SelfParam, params: [Param], -- cgit v1.2.3