diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-07-27 10:45:03 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-07-27 10:49:52 -0400 |
| commit | 45a370964fd2e672fb672963accd519663cda677 (patch) | |
| tree | d2c3829d8b24e787d5d150911482e032e54d1892 /python/lowlevelil.py | |
| parent | d45c101e01d358b127ba8f402b104362a1317959 (diff) | |
add better BNIL API documentation examples
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 4 |
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(): |
