(cls, ctxt, data)
| 2781 | |
| 2782 | @classmethod |
| 2783 | def _is_valid_for_data(cls, ctxt, data): |
| 2784 | try: |
| 2785 | # I'm not sure whats going on here even so I've suppressed the linter warning |
| 2786 | return cls.is_valid_for_data(BinaryView(handle=core.BNNewViewReference(data))) # type: ignore |
| 2787 | except: |
| 2788 | log_error(traceback.format_exc()) |
| 2789 | return False |
| 2790 | |
| 2791 | @classmethod |
| 2792 | def _is_deprecated(cls, ctxt): |
nothing calls this directly
no test coverage detected