================ @@ -52,14 +37,33 @@ struct SourceBreakpoint : public Breakpoint { static bool BreakpointHitCallback(void *baton, lldb::SBProcess &process, lldb::SBThread &thread, lldb::SBBreakpointLocation &location); -}; -inline bool operator<(const SourceBreakpoint &lhs, - const SourceBreakpoint &rhs) { - if (lhs.line == rhs.line) - return lhs.column < rhs.column; - return lhs.line < rhs.line; -} + inline bool operator<(const SourceBreakpoint &rhs) { + if (line == rhs.line) + return column < rhs.column; + return line < rhs.line; + } + + uint32_t GetLine() const { return line; } + uint32_t GetColumn() const { return column; } + +protected: + // logMessage part can be either a raw text or an expression. + struct LogMessagePart { + LogMessagePart(llvm::StringRef text, bool is_expr) + : text(text), is_expr(is_expr) {} + std::string text; + bool is_expr; + }; ---------------- JDevlieghere wrote:
Looking at the spec, seems like this is limited to SourceBreakpoints: ``` /** * The debug adapter supports log points by interpreting the `logMessage` * attribute of the `SourceBreakpoint`. */ supportsLogPoints?: boolean; ``` https://github.com/llvm/llvm-project/pull/133780 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits