[llvm] [JSON][NFC] Support `print` and `dump` methods in `json::Value` (PR #129302)
Nikolay Panchenko via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 14:09:40 PST 2025
================
@@ -472,6 +472,14 @@ class Value {
return LLVM_LIKELY(Type == T_Array) ? &as<json::Array>() : nullptr;
}
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
+ void print(llvm::raw_ostream &OS) const;
----------------
npanchen wrote:
Can you elaborate why they don't match ?
I've added `print` more for completeness as usually classes do have a pair to print (w/o \n) and dump(w/ \n)
https://github.com/llvm/llvm-project/pull/129302
More information about the llvm-commits
mailing list