| 1293 | |
| 1294 | |
| 1295 | void DebuggerController::NotifyError(const std::string& error, const std::string& shortError, void* data) |
| 1296 | { |
| 1297 | DebuggerEvent event; |
| 1298 | event.type = ErrorEventType; |
| 1299 | event.data.errorData.error = error; |
| 1300 | event.data.errorData.shortError = shortError; |
| 1301 | event.data.errorData.data = data; |
| 1302 | PostDebuggerEvent(event); |
| 1303 | } |
| 1304 | |
| 1305 | |
| 1306 | void DebuggerController::NotifyEvent(DebuggerEventType eventType) |
nothing calls this directly
no outgoing calls
no test coverage detected