(self, flag_ssa: SSAFlag)
| 6051 | return result |
| 6052 | |
| 6053 | def get_ssa_flag_value(self, flag_ssa: SSAFlag) -> 'variable.RegisterValue': |
| 6054 | flag = self.arch.get_flag_index(flag_ssa.flag) |
| 6055 | value = core.BNGetLowLevelILSSAFlagValue(self.handle, flag, flag_ssa.version) |
| 6056 | result = variable.RegisterValue.from_BNRegisterValue(value, self._arch) |
| 6057 | return result |
| 6058 | |
| 6059 | def get_medium_level_il_instruction_index(self, |
| 6060 | instr: InstructionIndex) -> Optional['mediumlevelil.InstructionIndex']: |
nothing calls this directly
no test coverage detected