Clears all entries in this jump table, except for the default block.
(&mut self)
| 80 | |
| 81 | /// Clears all entries in this jump table, except for the default block. |
| 82 | pub fn clear(&mut self) { |
| 83 | self.table.drain(1..); |
| 84 | } |
| 85 | |
| 86 | /// Return a value that can display the contents of this jump table. |
| 87 | pub fn display<'a>(&'a self, pool: &'a ValueListPool) -> DisplayJumpTable<'a> { |