blob: 4faf65567c3ea5bf66224d4bae2489189711760b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//===-- ProtocolEvents.cpp ------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "Protocol/ProtocolEvents.h"
#include "llvm/Support/JSON.h"
using namespace llvm;
namespace lldb_dap::protocol {
json::Value toJSON(const CapabilitiesEventBody &CEB) {
return json::Object{{"capabilities", CEB.capabilities}};
}
json::Value toJSON(const ModuleEventBody::Reason &MEBR) {
switch (MEBR) {
case ModuleEventBody::eReasonNew:
return "new";
case ModuleEventBody::eReasonChanged:
return "changed";
case ModuleEventBody::eReasonRemoved:
return "removed";
}
llvm_unreachable("unhandled module event reason!.");
}
json::Value toJSON(const ModuleEventBody &MEB) {
return json::Object{{"reason", MEB.reason}, {"module", MEB.module}};
}
} // namespace lldb_dap::protocol
|