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

Method toString

src/plugins/debugger/stackframe.cpp:34–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34QString StackFrameData::toString() const
35{
36 QString res;
37 QTextStream str(&res);
38 str << tr("Address:") << ' ';
39 str.setIntegerBase(16);
40 str << address;
41 str.setIntegerBase(10);
42 str << ' '
43 << tr("Function:") << ' ' << function << ' '
44 << tr("File:") << ' ' << file << ' '
45 << tr("Line:") << ' ' << line << ' '
46 << tr("From:") << ' ' << module << ' '
47 << tr("To:") << ' ' << receiver;
48 return res;
49}
50
51QString StackFrameData::toToolTip() const
52{

Callers 15

handleEventsMethod · 0.45
handleEventsMethod · 0.45
synOutputMsgMethod · 0.45
dataMethod · 0.45
initButtonMethod · 0.45
synOutputMsgMethod · 0.45
addBreakpointMethod · 0.45
runToLineMethod · 0.45
handleEventsMethod · 0.45
synPrintOutputMethod · 0.45
slotRemoveEvaluatorMethod · 0.45
launchSessionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected