MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / get_expr

Method get_expr

python/highlevelil.py:697–701  ·  view source on GitHub ↗
(self, operand_index: int)

Source from the content-addressed store, hash-verified

695 return variable.ConstantData(value, 0, state, core.max_confidence, self.core_instr.size, self.function.source_function)
696
697 def get_expr(self, operand_index: int) -> 'HighLevelILInstruction':
698 return HighLevelILInstruction.create(
699 self.function, ExpressionIndex(self.core_instr.operands[operand_index]),
700 self.as_ast
701 )
702
703 def get_intrinsic(self, operand_index: int) -> 'lowlevelil.ILIntrinsic':
704 if self.function.arch is None:

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected