( view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None )
| 328 | |
| 329 | @staticmethod |
| 330 | def mlil( |
| 331 | view: 'binaryview.BinaryView', settings: Optional['_function.DisassemblySettings'] = None |
| 332 | ) -> 'LinearViewObject': |
| 333 | _settings = settings |
| 334 | if _settings is not None: |
| 335 | _settings = _settings.handle |
| 336 | return LinearViewObject(core.BNCreateLinearViewMediumLevelIL(view.handle, _settings)) |
| 337 | |
| 338 | @staticmethod |
| 339 | def mlil_ssa_form( |
nothing calls this directly
no test coverage detected