php-parser/node/expr/static_property_fetch.go

40 lines
638 B
Go
Raw Normal View History

package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n StaticPropertyFetch) Name() string {
return "StaticPropertyFetch"
}
type StaticPropertyFetch struct {
2017-12-27 17:55:58 +00:00
name string
class node.Node
property node.Node
}
2017-12-27 17:55:58 +00:00
func NewStaticPropertyFetch(class node.Node, property node.Node) node.Node {
return StaticPropertyFetch{
2017-12-27 17:55:58 +00:00
"StaticPropertyFetch",
class,
2017-12-27 17:55:58 +00:00
property,
}
}
2017-12-27 23:23:32 +00:00
func (n StaticPropertyFetch) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.class != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("class")
n.class.Walk(vv)
}
2017-12-27 17:55:58 +00:00
if n.property != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("property")
n.property.Walk(vv)
}
}