( view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None )
| 310 | |
| 311 | @staticmethod |
| 312 | def llil( |
| 313 | view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None |
| 314 | ) -> 'LinearViewObject': |
| 315 | _settings = settings |
| 316 | if _settings is not None: |
| 317 | _settings = _settings.handle |
| 318 | return LinearViewObject(core.BNCreateLinearViewLowLevelIL(view.handle, _settings)) |
| 319 | |
| 320 | @staticmethod |
| 321 | def llil_ssa_form( |
nothing calls this directly
no test coverage detected