php-parser/node/stmt/trait_method_ref.go
2018-01-08 21:50:39 +02:00

63 lines
1.0 KiB
Go

package stmt
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type TraitMethodRef struct {
position *node.Position
comments []comment.Comment
Trait node.Node
Method node.Node
}
func NewTraitMethodRef(Trait node.Node, Method node.Node) *TraitMethodRef {
return &TraitMethodRef{
nil,
nil,
Trait,
Method,
}
}
func (n *TraitMethodRef) Attributes() map[string]interface{} {
return nil
}
func (n *TraitMethodRef) Position() *node.Position {
return n.position
}
func (n *TraitMethodRef) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *TraitMethodRef) Comments() []comment.Comment {
return n.comments
}
func (n *TraitMethodRef) SetComments(c []comment.Comment) node.Node {
n.comments = c
return n
}
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)
}