From be72df48408a4f3ae7cd92e9a89adf04d43025bf Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Sat, 11 Apr 2020 22:22:12 -0400 Subject: Remove old linear view implementation --- python/lineardisassembly.py | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'python/lineardisassembly.py') diff --git a/python/lineardisassembly.py b/python/lineardisassembly.py index 24574e48..9a94b08b 100644 --- a/python/lineardisassembly.py +++ b/python/lineardisassembly.py @@ -28,46 +28,6 @@ from binaryninja import basicblock from binaryninja.enums import LinearViewObjectIdentifierType -class LinearDisassemblyPosition(object): - """ - ``class LinearDisassemblyPosition`` is a helper object containing the position of the current Linear Disassembly - - .. note:: This object should not be instantiated directly. Rather call \ - :py:meth:`get_linear_disassembly_position_at ` which instantiates this object. - """ - def __init__(self, func, block, addr): - self._function = func - self._block = block - self._address = addr - - @property - def function(self): - """ """ - return self._function - - @function.setter - def function(self, value): - self._function = value - - @property - def block(self): - """ """ - return self._block - - @block.setter - def block(self, value): - self._block = value - - @property - def address(self): - """ """ - return self._address - - @address.setter - def address(self, value): - self._address = value - - class LinearDisassemblyLine(object): def __init__(self, line_type, func, block, contents): self.type = line_type -- cgit v1.3.1