(&mut self, name: &str)
| 1757 | } |
| 1758 | |
| 1759 | fn identifier_constant(&mut self, name: &str) -> usize { |
| 1760 | let s = self.ctx.intern(name.as_bytes()); |
| 1761 | self.make_constant(Value::from(s)) |
| 1762 | } |
| 1763 | |
| 1764 | fn declare_variable(&mut self, name: Token<'gc>, mutability: Mutability) -> usize { |
| 1765 | if self.scope_depth == 0 { |
no test coverage detected