Always pass the visitor as the first argument to walk* functions
This commit is contained in:
parent
754bdef793
commit
8d290058c9
10 changed files with 294 additions and 282 deletions
|
@ -122,7 +122,7 @@ impl TestHarnessGenerator<'_> {
|
|||
impl<'a> MutVisitor for TestHarnessGenerator<'a> {
|
||||
fn visit_crate(&mut self, c: &mut ast::Crate) {
|
||||
let prev_tests = mem::take(&mut self.tests);
|
||||
walk_crate(c, self);
|
||||
walk_crate(self, c);
|
||||
self.add_test_cases(ast::CRATE_NODE_ID, c.spans.inner_span, prev_tests);
|
||||
|
||||
// Create a main function to run our tests
|
||||
|
@ -192,7 +192,7 @@ struct EntryPointCleaner<'a> {
|
|||
impl<'a> MutVisitor for EntryPointCleaner<'a> {
|
||||
fn flat_map_item(&mut self, i: P<ast::Item>) -> SmallVec<[P<ast::Item>; 1]> {
|
||||
self.depth += 1;
|
||||
let item = walk_flat_map_item(i, None, self).expect_one("noop did something");
|
||||
let item = walk_flat_map_item(self, i, None).expect_one("noop did something");
|
||||
self.depth -= 1;
|
||||
|
||||
// Remove any #[rustc_main] or #[start] from the AST so it doesn't
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue