From 45a370964fd2e672fb672963accd519663cda677 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 27 Jul 2022 10:45:03 -0400 Subject: add better BNIL API documentation examples --- python/lowlevelil.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'python/lowlevelil.py') 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(): -- cgit v1.3.1