llcppg/ast:variadic func

This commit is contained in:
luoliwoshang
2024-08-26 14:44:27 +08:00
parent 8e9c43610d
commit d232109fce

View File

@@ -140,6 +140,14 @@ func (*TagExpr) exprNode() {}
// ------------------------------------------------
// type a, ...
type Variadic struct {
}
func (*Variadic) exprNode() {}
// ------------------------------------------------
// (X)
type ParenExpr struct {
X Expr