php-parser/node/expr/shell_exec.go
2018-01-04 22:09:48 +02:00

48 lines
751 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ShellExec struct {
attributes map[string]interface{}
position *node.Position
parts []node.Node
}
func NewShellExec(parts []node.Node) node.Node {
return &ShellExec{
map[string]interface{}{},
nil,
parts,
}
}
func (n ShellExec) Attributes() map[string]interface{} {
return n.attributes
}
func (n ShellExec) Position() *node.Position {
return n.position
}
func (n ShellExec) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
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)
}