[llvm] [JSON][NFC] Support `print` and `dump` methods in `json::Value` (PR #129302)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 04:02:32 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;
----------------
nikic wrote:

Do we need print() if we already have operator<<? Esp. as they don't quite match in this implementation.

https://github.com/llvm/llvm-project/pull/129302


More information about the llvm-commits mailing list