This method is called on an `Ast` before descending into child `Ast` nodes.
(&mut self, _ast: &Ast)
| 46 | /// This method is called on an `Ast` before descending into child `Ast` |
| 47 | /// nodes. |
| 48 | fn visit_pre(&mut self, _ast: &Ast) -> Result<(), Self::Err> { |
| 49 | Ok(()) |
| 50 | } |
| 51 | |
| 52 | /// This method is called on an `Ast` after descending all of its child |
| 53 | /// `Ast` nodes. |