This method is called on an `Ast` after descending all of its child `Ast` nodes.
(&mut self, _ast: &Ast)
| 52 | /// This method is called on an `Ast` after descending all of its child |
| 53 | /// `Ast` nodes. |
| 54 | fn visit_post(&mut self, _ast: &Ast) -> Result<(), Self::Err> { |
| 55 | Ok(()) |
| 56 | } |
| 57 | |
| 58 | /// This method is called between child nodes of an |
| 59 | /// [`Alternation`](struct.Alternation.html). |