An iterator that yields `ir::Block` items during a depth-first, pre-order traversal over its associated function.
| 133 | /// An iterator that yields `ir::Block` items during a depth-first, pre-order |
| 134 | /// traversal over its associated function. |
| 135 | pub struct DfsPreOrderIter<'a>(DfsIter<'a>); |
| 136 | |
| 137 | impl Iterator for DfsPreOrderIter<'_> { |
| 138 | type Item = ir::Block; |