diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-14 22:56:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-14 22:56:28 +0200 |
| commit | d4ecc6f5c0121a82bf491688fcc9e8993b72a730 (patch) | |
| tree | b2a7813d0c331196fea9ba928b4cb23c51956e12 /src/libsyntax/parse/parser/pat.rs | |
| parent | 83cd4e321193c1707941b57296f2e1d791d7ac99 (diff) | |
| parent | 9348af8396c961f8bb79cc360c091d74ea4ba34a (diff) | |
| download | rust-d4ecc6f5c0121a82bf491688fcc9e8993b72a730.tar.gz rust-d4ecc6f5c0121a82bf491688fcc9e8993b72a730.zip | |
Rollup merge of #63542 - c410-f3r:node_ids, r=petrochenkov
Add NodeId for Arm, Field and FieldPat Extracted from #63468
Diffstat (limited to 'src/libsyntax/parse/parser/pat.rs')
| -rw-r--r-- | src/libsyntax/parse/parser/pat.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/parser/pat.rs b/src/libsyntax/parse/parser/pat.rs index 53f4d0998c3..40aa8d7b46f 100644 --- a/src/libsyntax/parse/parser/pat.rs +++ b/src/libsyntax/parse/parser/pat.rs @@ -665,6 +665,7 @@ impl<'a> Parser<'a> { pat: subpat, is_shorthand, attrs: attrs.into(), + id: ast::DUMMY_NODE_ID, } }) } |
