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

48 lines
789 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type TraitMethodRef struct {
name string
attributes map[string]interface{}
trait node.Node
method node.Node
}
func NewTraitMethodRef(trait node.Node, method node.Node) node.Node {
return TraitMethodRef{
"TraitMethodRef",
map[string]interface{}{},
trait,
method,
}
}
func (n TraitMethodRef) Name() string {
return "TraitMethodRef"
}
func (n TraitMethodRef) Attributes() map[string]interface{} {
return n.attributes
}
func (n TraitMethodRef) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.trait != nil {
vv := v.GetChildrenVisitor("trait")
n.trait.Walk(vv)
}
if n.method != nil {
vv := v.GetChildrenVisitor("method")
n.method.Walk(vv)
}
v.LeaveNode(n)
}