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

Class DebuggerEvent

api/python/debuggercontroller.py:433–443  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

431
432
433class 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
446DebuggerEventCallback = Callable[['DebuggerEvent'], None]

Callers 1

_notifyMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected