Define the dynamic type `entity`.
(&mut self, entity: DynamicType, loc: Location)
| 161 | |
| 162 | /// Define the dynamic type `entity`. |
| 163 | pub fn def_dt(&mut self, entity: DynamicType, loc: Location) -> ParseResult<()> { |
| 164 | self.def_entity(entity.into(), loc) |
| 165 | } |
| 166 | |
| 167 | /// Define the global value `entity`. |
| 168 | pub fn def_gv(&mut self, entity: GlobalValue, loc: Location) -> ParseResult<()> { |