DebuggerEvent is the event object that a debugger event callback receives * ``type``: a DebuggerEventType that specifies the event type * ``data``: a DebuggerEventData that specifies the event data
| 431 | |
| 432 | |
| 433 | class DebuggerEvent: |
| 434 | """ |
| 435 | DebuggerEvent is the event object that a debugger event callback receives |
| 436 | |
| 437 | * ``type``: a DebuggerEventType that specifies the event type |
| 438 | * ``data``: a DebuggerEventData that specifies the event data |
| 439 | |
| 440 | """ |
| 441 | def __init__(self, type: DebuggerEventType, data: DebuggerEventData): |
| 442 | self.type = type |
| 443 | self.data = data |
| 444 | |
| 445 | |
| 446 | DebuggerEventCallback = Callable[['DebuggerEvent'], None] |