Get an iterator over the direct children of `block` in the dominator tree. These are the blocks whose immediate dominator is `block`, ordered by decreasing CFG post-order number.
(&self, block: Block)
| 303 | /// These are the blocks whose immediate dominator is `block`, ordered by |
| 304 | /// decreasing CFG post-order number. |
| 305 | pub fn children(&self, block: Block) -> ChildIter<'_> { |
| 306 | ChildIter { |
| 307 | domtree: self, |
| 308 | next: self.nodes[block].child, |
| 309 | } |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | impl DominatorTree { |
no outgoing calls