Lower UDRE to TypeValue if it references a value generic

This commit is contained in:
Alejandro Alonso
2024-08-01 10:22:43 -07:00
parent 7eb93b877a
commit 0df42e9841
16 changed files with 112 additions and 82 deletions

View File

@@ -1437,6 +1437,10 @@ class Traversal : public ASTVisitor<Traversal, Expr*, Stmt*,
return E;
}
Expr *visitTypeValueExpr(TypeValueExpr *E) {
return E;
}
//===--------------------------------------------------------------------===//
// Everything Else
//===--------------------------------------------------------------------===//