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