* @brief rawDebugSession implimented by original dap * protocol.TODO(mozart):Decide whether to use synchronous * or asynchronous. * @param parent */
| 18 | * @param parent |
| 19 | */ |
| 20 | RawDebugSession::RawDebugSession(std::shared_ptr<Session> &_session, QObject *parent) |
| 21 | : QObject(parent) |
| 22 | , session(_session) |
| 23 | { |
| 24 | initialize(); |
| 25 | } |
| 26 | |
| 27 | bool RawDebugSession::initialize() |
| 28 | { |
nothing calls this directly
no test coverage detected