llvm-project/lldb/tools/lldb-vscode/FunctionBreakpoint.cpp

29 lines
810 B
C++
Raw Normal View History

//===-- FunctionBreakpoint.cpp ----------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "FunctionBreakpoint.h"
#include "VSCode.h"
namespace lldb_vscode {
FunctionBreakpoint::FunctionBreakpoint(const llvm::json::Object &obj)
: BreakpointBase(obj), functionName(GetString(obj, "name")) {}
void FunctionBreakpoint::SetBreakpoint() {
if (functionName.empty())
return;
bp = g_vsc.target.BreakpointCreateByName(functionName.c_str());
if (!condition.empty())
SetCondition();
if (!hitCondition.empty())
SetHitCondition();
}
}