summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-07-27 10:45:03 -0400
committerJordan Wiens <jordan@psifertex.com>2022-07-27 10:49:52 -0400
commit45a370964fd2e672fb672963accd519663cda677 (patch)
treed2c3829d8b24e787d5d150911482e032e54d1892 /python/lowlevelil.py
parentd45c101e01d358b127ba8f402b104362a1317959 (diff)
add better BNIL API documentation examples
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index f20ad68f..98bf4da6 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -459,6 +459,10 @@ class LowLevelILInstruction(BaseILInstruction):
@staticmethod
def show_llil_hierarchy():
+ """
+ Opens a new tab showing the LLIL hierarchy which includes classes which can
+ easily be used with isinstance to match multiple types of IL instructions.
+ """
graph = flowgraph.FlowGraph()
nodes = {}
for instruction in ILInstruction.values():