package expr import ( "github.com/z7zmey/php-parser/node" ) type Include struct { Expr node.Node } func NewInclude(Expression node.Node) *Include { return &Include{ Expression, } } func (n *Include) Attributes() map[string]interface{} { return nil } func (n *Include) 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) }