php-parser/node/expr/shell_exec.go

35 lines
464 B
Go
Raw Normal View History

2017-12-18 18:00:19 +00:00
package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n ShellExec) Name() string {
return "ShellExec"
}
2017-12-18 18:00:19 +00:00
type ShellExec struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-18 18:00:19 +00:00
parts []node.Node
}
func NewShellExec(parts []node.Node) node.Node {
return ShellExec{
2017-12-27 17:55:58 +00:00
"ShellExec",
2017-12-18 18:00:19 +00:00
parts,
}
}
2017-12-27 23:23:32 +00:00
func (n ShellExec) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
2017-12-18 18:00:19 +00:00
if n.parts != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("parts")
2017-12-18 18:00:19 +00:00
for _, nn := range n.parts {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-18 18:00:19 +00:00
}
}
}