(self)
| 52 | self._is_emit_func_output_called = False |
| 53 | |
| 54 | def __enter__(self): |
| 55 | self._bb._enter_function_scope(self) |
| 56 | |
| 57 | def __exit__(self, exc_type, exc_val, exc_tb): |
| 58 | # __exit__ should properly handle the case where the with block exits with an exception |
nothing calls this directly
no test coverage detected