[clang] [clang]: support std::meta::info for primitive types (PR #190356)

via cfe-commits cfe-commits at lists.llvm.org
Sat Apr 4 08:07:00 PDT 2026


================
@@ -10936,6 +10939,46 @@ bool PointerExprEvaluator::VisitCXXNewExpr(const CXXNewExpr *E) {
 
   return true;
 }
+
+//===----------------------------------------------------------------------===//
+// Reflection expression evaluation
+//===----------------------------------------------------------------------===//
+
+namespace {
+class ReflectionEvaluator
----------------
Sirraide wrote:

Do we actually need an entire evaluator for this rather than just a single `EvaluateReflection()` function? Is this ever going to have any members other than `VisitCXXReflectExpr()`?

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


More information about the cfe-commits mailing list