//===-- Watchpoint.cpp ------------------------------------------*- C++ -*-===// // // 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 "Watchpoint.h" #include "DAP.h" #include "JSONUtils.h" #include "llvm/ADT/StringExtras.h" namespace lldb_dap { Watchpoint::Watchpoint(const llvm::json::Object &obj) : … { … } void Watchpoint::SetCondition() { … } void Watchpoint::SetHitCondition() { … } void Watchpoint::CreateJsonObject(llvm::json::Object &object) { … } void Watchpoint::SetWatchpoint() { … } } // namespace lldb_dap