summaryrefslogtreecommitdiff
path: root/python/lineardisassembly.py
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2020-04-11 22:22:12 -0400
committerRusty Wagner <rusty@vector35.com>2020-04-17 14:20:33 -0400
commitbe72df48408a4f3ae7cd92e9a89adf04d43025bf (patch)
treec3729612296f2622bcae61a45c7c69d9a1b3daa9 /python/lineardisassembly.py
parent9c1577c370d76b1797d55176cb59a10666b6ef2f (diff)
Remove old linear view implementation
Diffstat (limited to 'python/lineardisassembly.py')
-rw-r--r--python/lineardisassembly.py40
1 files changed, 0 insertions, 40 deletions
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 <binaryninja.binaryview.BinaryView.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