| 35 | } |
| 36 | |
| 37 | void CommandQueue::dumpQueue() const |
| 38 | { |
| 39 | qCDebug(DEBUGGERCOMMON) << "Pending commands" << m_commandList.size(); |
| 40 | unsigned commandNum = 0; |
| 41 | for (const auto& command : m_commandList) { |
| 42 | qCDebug(DEBUGGERCOMMON) << "Command" << commandNum << command->initialString(); |
| 43 | ++commandNum; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | void CommandQueue::rationalizeQueue(MICommand* command) |
| 48 | { |
nothing calls this directly
no test coverage detected