Fetch the default block for this jump table.
(&self)
| 37 | |
| 38 | /// Fetch the default block for this jump table. |
| 39 | pub fn default_block(&self) -> BlockCall { |
| 40 | *self.table.first().unwrap() |
| 41 | } |
| 42 | |
| 43 | /// Mutable access to the default block of this jump table. |
| 44 | pub fn default_block_mut(&mut self) -> &mut BlockCall { |
no test coverage detected