1 //===-- FunctionBreakpoint.h ------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_TOOLS_LLDB_DAP_FUNCTIONBREAKPOINT_H
10 #define LLDB_TOOLS_LLDB_DAP_FUNCTIONBREAKPOINT_H
12 #include "Breakpoint.h"
13 #include "DAPForward.h"
17 struct FunctionBreakpoint
: public Breakpoint
{
18 std::string functionName
;
20 FunctionBreakpoint(DAP
&dap
, const llvm::json::Object
&obj
);
22 // Set this breakpoint in LLDB as a new breakpoint
26 } // namespace lldb_dap