(self, flag_ssa: SSAFlag)
| 6000 | return self[result] |
| 6001 | |
| 6002 | def get_ssa_flag_definition(self, flag_ssa: SSAFlag) -> Optional[LowLevelILInstruction]: |
| 6003 | flag = self.arch.get_flag_index(flag_ssa.flag) |
| 6004 | result = core.BNGetLowLevelILSSAFlagDefinition(self.handle, flag, flag_ssa.version) |
| 6005 | if result >= core.BNGetLowLevelILInstructionCount(self.handle): |
| 6006 | return None |
| 6007 | return self[result] |
| 6008 | |
| 6009 | def get_ssa_memory_definition(self, index: int) -> Optional[LowLevelILInstruction]: |
| 6010 | result = core.BNGetLowLevelILSSAMemoryDefinition(self.handle, index) |
nothing calls this directly
no test coverage detected