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

57 lines
932 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type StaticCall struct {
name string
attributes map[string]interface{}
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",
map[string]interface{}{},
class,
call,
arguments,
}
}
func (n StaticCall) Name() string {
return "StaticCall"
}
func (n StaticCall) Attributes() map[string]interface{} {
return n.attributes
}
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)
}