File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,10 @@ class CancelRequestHandler
428
428
protocol::CancelResponseBody> {
429
429
public:
430
430
using RequestHandler::RequestHandler;
431
- static llvm::StringLiteral getCommand () { return " cancel" ; }
431
+ static llvm::StringLiteral GetCommand () { return " cancel" ; }
432
+ llvm::StringMap<bool > GetCapabilities () const override {
433
+ return {{" supportsCancelRequest" , true }};
434
+ }
432
435
llvm::Expected<protocol::CancelResponseBody>
433
436
Run (const protocol::CancelArguments &args) const override ;
434
437
};
Original file line number Diff line number Diff line change 19
19
#include " lldb/lldb-forward.h"
20
20
#include " llvm/ADT/StringRef.h"
21
21
#include " llvm/Support/Error.h"
22
+ #include < chrono>
22
23
#include < optional>
23
24
24
25
namespace lldb_dap {
You can’t perform that action at this time.
0 commit comments