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
428428 protocol::CancelResponseBody> {
429429public:
430430 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+ }
432435 llvm::Expected<protocol::CancelResponseBody>
433436 Run (const protocol::CancelArguments &args) const override ;
434437};
Original file line number Diff line number Diff line change 1919#include " lldb/lldb-forward.h"
2020#include " llvm/ADT/StringRef.h"
2121#include " llvm/Support/Error.h"
22+ #include < chrono>
2223#include < optional>
2324
2425namespace lldb_dap {
You can’t perform that action at this time.
0 commit comments