Enters a new local scope.
(&mut self)
| 167 | |
| 168 | /// Enters a new local scope. |
| 169 | pub(crate) fn enter_scope(&mut self) -> LocalSymtable<'_> { |
| 170 | LocalSymtable::new(self) |
| 171 | } |
| 172 | |
| 173 | /// Gets a global symbol by its `vref`, returning its register and prototype. |
| 174 | pub(crate) fn get_global(&self, vref: &VarRef) -> Result<(Register, SymbolPrototype)> { |
no outgoing calls