1
Fork 0

Remove special case for statement NodeId assignment

We now let `noop_flat_map_stmt` assign `NodeId`s (via `visit_id`),
just as we do for other AST nodes.
This commit is contained in:
Aaron Hill 2021-08-04 19:41:13 -05:00
parent 1f94abcda6
commit a35d7f2bb3
No known key found for this signature in database
GPG key ID: B4087E510E98B164
3 changed files with 7 additions and 28 deletions

View file

@ -7,6 +7,7 @@
#![feature(proc_macro_internals)]
#![feature(proc_macro_span)]
#![feature(try_blocks)]
#![recursion_limit = "256"]
#[macro_use]
extern crate rustc_macros;