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.
| 353 | |
| 354 | |
| 355 | class 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 | |
| 372 | class ErrorEventData: |