File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -1784,7 +1784,6 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
17841784 /// [While expression reference](https://doc.rust-lang.org/reference/expressions/loop-expr.html#predicate-loops)
17851785 struct Condition { T ![ let ] , Pat , T ![ =] , Expr }
17861786
1787- // TODO: this one is used by closure expressions too, but hey use pipes instead of parens
17881787 /// Parameter list **declaration**.
17891788 ///
17901789 /// ```
@@ -1797,7 +1796,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
17971796 /// ```
17981797 ///
17991798 /// [Reference](https://doc.rust-lang.org/reference/items/functions.html)ocs to codegen script
1800- struct ParamList {
1799+ struct ParamList { // FIXME: this node is used by closure expressions too, but hey use pipes instead of parens...
18011800 T ![ '(' ] ,
18021801 SelfParam ,
18031802 params: [ Param ] ,
You can’t perform that action at this time.
0 commit comments