(self, type: DebuggerEventType, data: DebuggerEventData)
| 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] |
nothing calls this directly
no outgoing calls
no test coverage detected