summaryrefslogtreecommitdiff
path: root/python/scriptingprovider.py
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2024-08-22 12:55:49 -0600
committerRusty Wagner <rusty.wagner@gmail.com>2024-10-21 13:56:55 -0400
commitd8e3001e535fad178c621ff07418f81f25123dc4 (patch)
tree54c03cef2f0bdfd9a3b6df4334c81becb63e4993 /python/scriptingprovider.py
parent0e281a30d73c0f31ef9442fef0346779164231ad (diff)
Allow multiple high level representations for display, add Pseudo Rust and a Pseudo Python example plugin
Diffstat (limited to 'python/scriptingprovider.py')
-rw-r--r--python/scriptingprovider.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py
index 02b070fa..4b76939f 100644
--- a/python/scriptingprovider.py
+++ b/python/scriptingprovider.py
@@ -1809,23 +1809,23 @@ def _get_current_il_function(instance: PythonScriptingInstance):
from binaryninja import FunctionGraphType
if instance.interpreter.locals["current_ui_view_location"] is not None:
ilType = instance.interpreter.locals["current_ui_view_location"].getILViewType()
- if ilType == FunctionGraphType.LowLevelILFunctionGraph:
+ if ilType.view_type == FunctionGraphType.LowLevelILFunctionGraph:
return instance.interpreter.locals["current_llil"]
- elif ilType == FunctionGraphType.LiftedILFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.LiftedILFunctionGraph:
return instance.interpreter.locals["current_lifted_il"]
- elif ilType == FunctionGraphType.LowLevelILSSAFormFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.LowLevelILSSAFormFunctionGraph:
return instance.interpreter.locals["current_llil_ssa"]
- elif ilType == FunctionGraphType.MappedMediumLevelILFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.MappedMediumLevelILFunctionGraph:
return instance.interpreter.locals["current_mapped_mlil"]
- elif ilType == FunctionGraphType.MappedMediumLevelILSSAFormFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.MappedMediumLevelILSSAFormFunctionGraph:
return instance.interpreter.locals["current_mapped_mlil_ssa"]
- elif ilType == FunctionGraphType.MediumLevelILFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.MediumLevelILFunctionGraph:
return instance.interpreter.locals["current_mlil"]
- elif ilType == FunctionGraphType.MediumLevelILSSAFormFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.MediumLevelILSSAFormFunctionGraph:
return instance.interpreter.locals["current_mlil_ssa"]
- elif ilType == FunctionGraphType.HighLevelILFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.HighLevelILFunctionGraph:
return instance.interpreter.locals["current_hlil"]
- elif ilType == FunctionGraphType.HighLevelILSSAFormFunctionGraph:
+ elif ilType.view_type == FunctionGraphType.HighLevelILSSAFormFunctionGraph:
return instance.interpreter.locals["current_hlil_ssa"]
return None