Method
block_insns
(&self, block: BlockIndex)
Source from the content-addressed store, hash-verified
| 1539 | } |
| 1540 | |
| 1541 | fn block_insns(&self, block: BlockIndex) -> InstRange { |
| 1542 | let range = self.block_ranges.get(block.index()); |
| 1543 | InstRange::new(InsnIndex::new(range.start), InsnIndex::new(range.end)) |
| 1544 | } |
| 1545 | |
| 1546 | fn block_succs(&self, block: BlockIndex) -> &[BlockIndex] { |
| 1547 | let range = self.block_succ_range.get(block.index()); |
Callers
nothing calls this directly
Tested by
no test coverage detected