php-parser/node/expr/method_call.go

51 lines
808 B
Go
Raw Normal View History

2017-12-18 16:39:04 +00:00
package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n MethodCall) Name() string {
return "MethodCall"
}
2017-12-18 16:39:04 +00:00
type MethodCall struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-18 16:39:04 +00:00
variable node.Node
2017-12-27 17:55:58 +00:00
method node.Node
2017-12-18 16:39:04 +00:00
arguments []node.Node
}
2017-12-27 17:55:58 +00:00
func NewMethodCall(variable node.Node, method node.Node, arguments []node.Node) node.Node {
2017-12-18 16:39:04 +00:00
return MethodCall{
2017-12-27 17:55:58 +00:00
"MethodCall",
2017-12-18 16:39:04 +00:00
variable,
2017-12-27 17:55:58 +00:00
method,
2017-12-18 16:39:04 +00:00
arguments,
}
}
2017-12-27 23:23:32 +00:00
func (n MethodCall) Walk(v node.Visitor) {
2017-12-28 11:36:27 +00:00
if v.EnterNode(n) == false {
2017-12-27 23:23:32 +00:00
return
}
2017-12-18 16:39:04 +00:00
if n.variable != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("variable")
2017-12-27 23:23:32 +00:00
n.variable.Walk(vv)
2017-12-18 16:39:04 +00:00
}
2017-12-27 17:55:58 +00:00
if n.method != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("method")
2017-12-27 23:23:32 +00:00
n.method.Walk(vv)
2017-12-18 16:39:04 +00:00
}
if n.arguments != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("arguments")
2017-12-18 16:39:04 +00:00
for _, nn := range n.arguments {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-18 16:39:04 +00:00
}
}
2017-12-28 11:36:27 +00:00
v.LeaveNode(n)
2017-12-18 16:39:04 +00:00
}