pub trait ParExplode: Parallel {
    fn after_one_stmt(&mut self, stmts: &mut Vec<Stmt>);
fn after_one_module_item(&mut self, stmts: &mut Vec<ModuleItem>); }

Required methods

Invoked after visiting each statements.

Implementor should not delete/prepend to stmts.

Invoked after visiting each statements.

Implementor should not delete/prepend to stmts.

Implementors