Merge pull request #747 from luoliwoshang/llcppg/ast/variadic

llcppg/ast:variadic func
This commit is contained in:
xushiwei
2024-08-27 05:21:36 +08:00
committed by GitHub

View File

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