[RISCV] Rename a lambda to have plural nouns to reflect that it contains a loop. NFC
[llvm-project.git] / lldb / tools / lldb-dap / FunctionBreakpoint.h
blob93f0b93b35291d3c08f8c4932aea10e243ff8360
1 //===-- FunctionBreakpoint.h ------------------------------------*- C++ -*-===//
2 //
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
6 //
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"
15 namespace lldb_dap {
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
23 void SetBreakpoint();
26 } // namespace lldb_dap
28 #endif