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

Class TargetStoppedEventData

api/python/debuggercontroller.py:355–369  ·  view source on GitHub ↗

TargetStoppedEventData is the data associated with a TargetStoppedEvent * ``reason``: the reason of the stop * ``last_active_thread``: not used * ``exit_code``: not used * ``data``: extra data. Not used.

Source from the content-addressed store, hash-verified

353
354
355class TargetStoppedEventData:
356 """
357 TargetStoppedEventData is the data associated with a TargetStoppedEvent
358
359 * ``reason``: the reason of the stop
360 * ``last_active_thread``: not used
361 * ``exit_code``: not used
362 * ``data``: extra data. Not used.
363
364 """
365 def __init__(self, reason: DebugStopReason, last_active_thread: int, exit_code: int, data):
366 self.reason = reason
367 self.last_active_thread = last_active_thread
368 self.exit_code = exit_code
369 self.data = data
370
371
372class ErrorEventData:

Callers 1

_notifyMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected