package stmt import ( "github.com/z7zmey/php-parser/node" ) type Expression struct { name string attributes map[string]interface{} expr node.Node } func NewExpression(expr node.Node) node.Node { return Expression{ "Expression", map[string]interface{}{}, expr, } } func (n Expression) Name() string { return "Expression" } func (n Expression) Attributes() map[string]interface{} { return n.attributes } func (n Expression) Walk(v node.Visitor) { if v.EnterNode(n) == false { return } if n.expr != nil { vv := v.GetChildrenVisitor("expr") n.expr.Walk(vv) } v.LeaveNode(n) }