Check whether it is the entry node of the CFG
(&self)
| 38 | |
| 39 | /// Check whether it is the entry node of the CFG |
| 40 | pub fn is_entry(&self) -> bool { |
| 41 | self.node == mir::START_BLOCK |
| 42 | } |
| 43 | |
| 44 | pub fn node(&self) -> BasicBlock { |
| 45 | self.node |
no outgoing calls
no test coverage detected