The set of optional attributes placed on the instruction
(self)
| 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]]): |