Define the stack slot `entity`.
(&mut self, entity: StackSlot, loc: Location)
| 151 | |
| 152 | /// Define the stack slot `entity`. |
| 153 | pub fn def_ss(&mut self, entity: StackSlot, loc: Location) -> ParseResult<()> { |
| 154 | self.def_entity(entity.into(), loc) |
| 155 | } |
| 156 | |
| 157 | /// Define the dynamic stack slot `entity`. |
| 158 | pub fn def_dss(&mut self, entity: DynamicStackSlot, loc: Location) -> ParseResult<()> { |