The reason for the target to stop This is the same value to the return value of the function that resumed the target, e.g., ``go()``
(self)
| 1333 | |
| 1334 | @property |
| 1335 | def stop_reason(self) -> DebugStopReason: |
| 1336 | """ |
| 1337 | The reason for the target to stop |
| 1338 | |
| 1339 | This is the same value to the return value of the function that resumed the target, e.g., ``go()`` |
| 1340 | """ |
| 1341 | return DebugStopReason(dbgcore.BNDebuggerGetStopReason(self.handle)) |
| 1342 | |
| 1343 | @property |
| 1344 | def stop_reason_str(self) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected