diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-09-09 17:42:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-09 17:42:23 +0200 |
| commit | 457a23fabe4caecb5b18c0d6a801f1393a4dac80 (patch) | |
| tree | 33e29f45bf31895d123021669313521067b60822 /src/libsyntax/parse/parser/expr.rs | |
| parent | 824383d4ab66abd32abc6e19b68d78ecfddcb7d4 (diff) | |
| parent | 63a5f399aef46f94a24e0d0a3b03eb7f66a33800 (diff) | |
| download | rust-457a23fabe4caecb5b18c0d6a801f1393a4dac80.tar.gz rust-457a23fabe4caecb5b18c0d6a801f1393a4dac80.zip | |
Rollup merge of #63468 - c410-f3r:attrs, r=petrochenkov
Resolve attributes in several places Resolve attributes for Arm, Field, FieldPat, GenericParam, Param, StructField and Variant. This PR is based on @petrochenkov work located at https://github.com/petrochenkov/rust/commit/83fdb8d598c1a871d40b21faed64ee698b74f814.
Diffstat (limited to 'src/libsyntax/parse/parser/expr.rs')
| -rw-r--r-- | src/libsyntax/parse/parser/expr.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser/expr.rs b/src/libsyntax/parse/parser/expr.rs index 4dbb5ff75eb..31b28443abb 100644 --- a/src/libsyntax/parse/parser/expr.rs +++ b/src/libsyntax/parse/parser/expr.rs @@ -1193,7 +1193,8 @@ impl<'a> Parser<'a> { ty: t, pat, span, - id: DUMMY_NODE_ID + id: DUMMY_NODE_ID, + is_placeholder: false, }) } @@ -1455,6 +1456,7 @@ impl<'a> Parser<'a> { body: expr, span: lo.to(hi), id: DUMMY_NODE_ID, + is_placeholder: false, }) } @@ -1611,6 +1613,7 @@ impl<'a> Parser<'a> { is_shorthand: false, attrs: ThinVec::new(), id: DUMMY_NODE_ID, + is_placeholder: false, }); } } @@ -1697,6 +1700,7 @@ impl<'a> Parser<'a> { is_shorthand, attrs: attrs.into(), id: DUMMY_NODE_ID, + is_placeholder: false, }) } |
