(self, scope_root)
| 150 | self.emitError = error_handler or default_error_handler |
| 151 | |
| 152 | def pushScope(self, scope_root): |
| 153 | self._scope = PyScopedSymbolTable.Scope(scope_root, parent=self._scope) |
| 154 | |
| 155 | def popScope(self): |
| 156 | if not self._scope: |
no test coverage detected