(bb: BasicBlock)
| 33 | |
| 34 | impl WtoVertex { |
| 35 | pub fn new(bb: BasicBlock) -> Self { |
| 36 | Self { node: bb } |
| 37 | } |
| 38 | |
| 39 | /// Check whether it is the entry node of the CFG |
| 40 | pub fn is_entry(&self) -> bool { |
nothing calls this directly
no test coverage detected