================ @@ -927,6 +928,32 @@ class CommandObjectFrameRecognizerClear : public CommandObjectParsed { } }; +static void +PrintRecognizerDetails(Stream &strm, const std::string &module, + llvm::ArrayRef<lldb_private::ConstString> symbols, + Mangled::NamePreference preference, bool regexp) { + if (!module.empty()) + strm << ", module " << module; + for (auto &symbol : symbols) { ---------------- Michael137 wrote:
We could be fancy and use an `llvm::interleaveComma` here https://github.com/llvm/llvm-project/pull/105756 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits