(self, ac: Any)
| 171 | self.handle = _handle |
| 172 | |
| 173 | def _action(self, ac: Any): |
| 174 | try: |
| 175 | if self.action is not None: |
| 176 | self.action(AnalysisContext(ac)) |
| 177 | except: |
| 178 | log_error(traceback.format_exc()) |
| 179 | |
| 180 | def __del__(self): |
| 181 | if core is not None: |
no test coverage detected