php-parser/node/stmt/trait_method_ref.go

39 lines
626 B
Go
Raw Normal View History

2017-12-09 11:13:12 +00:00
package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
2017-12-27 23:23:32 +00:00
func (n TraitMethodRef) Name() string {
2017-12-27 17:55:58 +00:00
return "TraitMethodRef"
}
2017-12-09 11:13:12 +00:00
type TraitMethodRef struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-09 11:13:12 +00:00
trait node.Node
method token.Token
}
2017-12-27 23:23:32 +00:00
// TODO: method must be identifier
2017-12-09 11:13:12 +00:00
func NewTraitMethodRef(trait node.Node, method token.Token) node.Node {
return TraitMethodRef{
2017-12-27 17:55:58 +00:00
"TraitMethodRef",
2017-12-09 11:13:12 +00:00
trait,
method,
}
}
2017-12-27 23:23:32 +00:00
func (n TraitMethodRef) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
v.Scalar("method", n.method.Value)
2017-12-09 11:13:12 +00:00
if n.trait != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("trait")
n.trait.Walk(vv)
2017-12-09 11:13:12 +00:00
}
}