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/ext | |
| 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/ext')
| -rw-r--r-- | src/libsyntax/ext/build.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/ext/build.rs b/src/libsyntax/ext/build.rs index 22962499a2b..aab782d612e 100644 --- a/src/libsyntax/ext/build.rs +++ b/src/libsyntax/ext/build.rs @@ -403,6 +403,7 @@ impl<'a> ExtCtxt<'a> { span, is_shorthand: false, attrs: ThinVec::new(), + id: ast::DUMMY_NODE_ID, } } pub fn expr_struct( @@ -612,6 +613,7 @@ impl<'a> ExtCtxt<'a> { guard: None, body: expr, span, + id: ast::DUMMY_NODE_ID, } } |
