| 737 | } |
| 738 | |
| 739 | bool DebuggerClientDap::stepOut( int threadId, bool singleThread ) { |
| 740 | std::string sessionId = findSessionByThread( threadId ); |
| 741 | if ( sessionId.empty() ) |
| 742 | return false; |
| 743 | nlohmann::json arguments{ { DAP_THREAD_ID, threadId } }; |
| 744 | if ( singleThread ) |
| 745 | arguments[DAP_SINGLE_THREAD] = true; |
| 746 | makeRequest( "stepOut", arguments, |
| 747 | makeResponseHandler( &DebuggerClientDap::processResponseNext, this, sessionId ), |
| 748 | sessionId ); |
| 749 | return true; |
| 750 | } |
| 751 | |
| 752 | bool DebuggerClientDap::terminate( bool restart ) { |
| 753 | nlohmann::json arguments; |
no test coverage detected