Define the jump table `entity`.
(&mut self, entity: Constant, loc: Location)
| 186 | |
| 187 | /// Define the jump table `entity`. |
| 188 | pub fn def_constant(&mut self, entity: Constant, loc: Location) -> ParseResult<()> { |
| 189 | self.def_entity(entity.into(), loc) |
| 190 | } |
| 191 | |
| 192 | /// Define an entity. This can be used for instructions whose numbers never |
| 193 | /// appear in source, or implicitly defined signatures. |
no test coverage detected