MCPcopy Create free account
hub / github.com/Codeya-IDE/deepin-ide / handleLibraryUnloaded

Method handleLibraryUnloaded

src/tools/debugadapter/dapsession.cpp:721–732  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

719}
720
721void DapSession::handleLibraryUnloaded(const dap::ModuleEvent &moduleEvent)
722{
723 dap::OutputEvent outputEvent;
724 outputEvent.category = "console";
725 QString targetName = QString::fromStdString(moduleEvent.module.name);
726 outputEvent.output = QString("Unloaded %1. Symbols loaded.\n")
727 .arg(targetName).toStdString();
728 d->session->send(outputEvent);
729 Log("--> Server sent output event to client\n")
730 d->session->send(moduleEvent);
731 Log("--> Server sent module event to client\n")
732}
733
734void DapSession::handleStreamConsole(const QString &text)
735{

Callers

nothing calls this directly

Calls 2

QStringClass · 0.50
sendMethod · 0.45

Tested by

no test coverage detected