(id: BlockId)
| 19 | |
| 20 | impl BasicBlock { |
| 21 | pub fn new(id: BlockId) -> Self { |
| 22 | Self { id, statements: Vec::new(), predecessors: HashSet::new(), successors: HashMap::new() } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | #[derive(Debug, Default, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected