[Lldb-commits] [lldb] [lldb] Support specifying a language for breakpoint conditions (PR #147603)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 9 02:51:08 PDT 2025
================
@@ -0,0 +1,53 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_BREAKPOINT_STOPCONDITION_H
+#define LLDB_BREAKPOINT_STOPCONDITION_H
+
+#include "lldb/lldb-private.h"
+
+namespace lldb_private {
+
+class StopCondition {
+public:
+ StopCondition(std::string text = "",
----------------
Michael137 wrote:
Does `text` need to be defaulted? From what I've seen we always pass a condition text?
https://github.com/llvm/llvm-project/pull/147603
More information about the lldb-commits
mailing list