llcppg/ast:scoping for Tagexpr

This commit is contained in:
luoliwoshang
2024-08-22 17:17:51 +08:00
parent 3c282e8cf9
commit 63aad4b9bf

View File

@@ -130,10 +130,10 @@ const (
Class Class
) )
// struct/union/enum/class Name // struct/union/enum/class (A::B::)Name
type TagExpr struct { type TagExpr struct {
Tag Tag Tag Tag
Name *Ident Name Expr // ScopingExpr, Ident
} }
func (*TagExpr) exprNode() {} func (*TagExpr) exprNode() {}