BinaryView for the current AnalysisContext (writable)
(self)
| 54 | |
| 55 | @property |
| 56 | def view(self) -> 'binaryview.BinaryView': |
| 57 | """ |
| 58 | BinaryView for the current AnalysisContext (writable) |
| 59 | """ |
| 60 | result = core.BNAnalysisContextGetBinaryView(self.handle) |
| 61 | if not result: |
| 62 | return None |
| 63 | return binaryview.BinaryView(handle=result) |
| 64 | |
| 65 | @property |
| 66 | def function(self) -> '_function.Function': |
nothing calls this directly
no test coverage detected