Pop the current symbol table off the stack
(&mut self)
| 892 | |
| 893 | /// Pop the current symbol table off the stack |
| 894 | fn pop_symbol_table(&mut self) -> SymbolTable { |
| 895 | self.symbol_table_stack.pop().expect("compiler bug") |
| 896 | } |
| 897 | |
| 898 | /// Check if a super() call can be optimized |
| 899 | /// Returns Some(SuperCallType) if optimization is possible, None otherwise |
no test coverage detected