Define the external function `entity`.
(&mut self, entity: FuncRef, loc: Location)
| 176 | |
| 177 | /// Define the external function `entity`. |
| 178 | pub fn def_fn(&mut self, entity: FuncRef, loc: Location) -> ParseResult<()> { |
| 179 | self.def_entity(entity.into(), loc) |
| 180 | } |
| 181 | |
| 182 | /// Define the jump table `entity`. |
| 183 | pub fn def_jt(&mut self, entity: JumpTable, loc: Location) -> ParseResult<()> { |