php-parser/node/expr/shell_exec.go
2018-01-11 19:34:42 +02:00

42 lines
689 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
// ShellExec node
type ShellExec struct {
Parts []node.Node
}
// NewShellExec node constuctor
func NewShellExec(Parts []node.Node) *ShellExec {
return &ShellExec{
Parts,
}
}
// Attributes returns node attributes as map
func (n *ShellExec) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
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 {
if nn != nil {
nn.Walk(vv)
}
}
}
v.LeaveNode(n)
}