An iterator that yields `ir::Block` items during a depth-first, post-order traversal over its associated function.
| 150 | /// An iterator that yields `ir::Block` items during a depth-first, post-order |
| 151 | /// traversal over its associated function. |
| 152 | pub struct DfsPostOrderIter<'a>(DfsIter<'a>); |
| 153 | |
| 154 | impl Iterator for DfsPostOrderIter<'_> { |
| 155 | type Item = ir::Block; |