php-parser/node/expr/static_call.go
2017-12-29 17:20:24 +02:00

55 lines
856 B
Go

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