diff options
author | Aleksey Kladov <[email protected]> | 2020-04-30 20:36:31 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-30 21:08:50 +0100 |
commit | 15cfa9a808be820ceafc2e957ea8532e8ec68f00 (patch) | |
tree | 1b6d98928ecc2a12c6385b01f8c2450b2af928bd /xtask | |
parent | 23c889694e4d983dfda4956ae083cf9387316669 (diff) |
Fix a bunch of false-positives in join-lines
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/ast_src.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index 98c8644e4..c14804aad 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -451,7 +451,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
451 | struct ContinueExpr: AttrsOwner { T![continue], T![lifetime] } | 451 | struct ContinueExpr: AttrsOwner { T![continue], T![lifetime] } |
452 | struct BreakExpr: AttrsOwner { T![break], T![lifetime], Expr } | 452 | struct BreakExpr: AttrsOwner { T![break], T![lifetime], Expr } |
453 | struct Label { T![lifetime] } | 453 | struct Label { T![lifetime] } |
454 | struct BlockExpr: AttrsOwner { Label, T![unsafe], Block } | 454 | struct BlockExpr: AttrsOwner { Label, T![unsafe], T![async], Block } |
455 | struct ReturnExpr: AttrsOwner { Expr } | 455 | struct ReturnExpr: AttrsOwner { Expr } |
456 | struct CallExpr: ArgListOwner { Expr } | 456 | struct CallExpr: ArgListOwner { Expr } |
457 | struct MethodCallExpr: AttrsOwner, ArgListOwner { | 457 | struct MethodCallExpr: AttrsOwner, ArgListOwner { |