Define the signature `entity`.
(&mut self, entity: SigRef, loc: Location)
| 171 | |
| 172 | /// Define the signature `entity`. |
| 173 | pub fn def_sig(&mut self, entity: SigRef, loc: Location) -> ParseResult<()> { |
| 174 | self.def_entity(entity.into(), loc) |
| 175 | } |
| 176 | |
| 177 | /// Define the external function `entity`. |
| 178 | pub fn def_fn(&mut self, entity: FuncRef, loc: Location) -> ParseResult<()> { |