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

Method attributes

python/lowlevelil.py:859–865  ·  view source on GitHub ↗

The set of optional attributes placed on the instruction

(self)

Source from the content-addressed store, hash-verified

857
858 @property
859 def attributes(self) -> Set[ILInstructionAttribute]:
860 """The set of optional attributes placed on the instruction"""
861 result: Set[ILInstructionAttribute] = set()
862 for flag in ILInstructionAttribute:
863 if self.instr.attributes & flag.value != 0:
864 result.add(flag)
865 return result
866
867 @staticmethod
868 def _make_options_array(options: Optional[List[DataFlowQueryOption]]):

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected