| 724 | } |
| 725 | |
| 726 | bool DebuggerClientDap::stepInto( int threadId, bool singleThread ) { |
| 727 | std::string sessionId = findSessionByThread( threadId ); |
| 728 | if ( sessionId.empty() ) |
| 729 | return false; |
| 730 | nlohmann::json arguments{ { DAP_THREAD_ID, threadId } }; |
| 731 | if ( singleThread ) |
| 732 | arguments[DAP_SINGLE_THREAD] = true; |
| 733 | makeRequest( "stepIn", arguments, |
| 734 | makeResponseHandler( &DebuggerClientDap::processResponseNext, this, sessionId ), |
| 735 | sessionId ); |
| 736 | return true; |
| 737 | } |
| 738 | |
| 739 | bool DebuggerClientDap::stepOut( int threadId, bool singleThread ) { |
| 740 | std::string sessionId = findSessionByThread( threadId ); |
no test coverage detected