php-parser/node/expr/method_call.go
2018-01-09 15:51:32 +02:00

49 lines
792 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type MethodCall struct {
Variable node.Node
Method node.Node
Arguments []node.Node
}
func NewMethodCall(Variable node.Node, Method node.Node, Arguments []node.Node) *MethodCall {
return &MethodCall{
Variable,
Method,
Arguments,
}
}
func (n *MethodCall) Attributes() map[string]interface{} {
return nil
}
func (n *MethodCall) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Variable != nil {
vv := v.GetChildrenVisitor("Variable")
n.Variable.Walk(vv)
}
if n.Method != nil {
vv := v.GetChildrenVisitor("Method")
n.Method.Walk(vv)
}
if n.Arguments != nil {
vv := v.GetChildrenVisitor("Arguments")
for _, nn := range n.Arguments {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}