Define the value `entity`.
(&mut self, entity: Value, loc: Location)
| 141 | |
| 142 | /// Define the value `entity`. |
| 143 | pub fn def_value(&mut self, entity: Value, loc: Location) -> ParseResult<()> { |
| 144 | self.def_entity(entity.into(), loc) |
| 145 | } |
| 146 | |
| 147 | /// Define the block `entity`. |
| 148 | pub fn def_block(&mut self, entity: Block, loc: Location) -> ParseResult<()> { |
no test coverage detected