MCPcopy Create free account
hub / github.com/Vector35/debugger / stop_reason

Method stop_reason

api/python/debuggercontroller.py:1335–1341  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected