( view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None )
| 301 | |
| 302 | @staticmethod |
| 303 | def lifted_il( |
| 304 | view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None |
| 305 | ) -> 'LinearViewObject': |
| 306 | _settings = settings |
| 307 | if _settings is not None: |
| 308 | _settings = _settings.handle |
| 309 | return LinearViewObject(core.BNCreateLinearViewLiftedIL(view.handle, _settings)) |
| 310 | |
| 311 | @staticmethod |
| 312 | def llil( |
nothing calls this directly
no test coverage detected