php-parser/node/expr/static_property_fetch.go

48 lines
839 B
Go
Raw Normal View History

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type StaticPropertyFetch struct {
2017-12-29 15:53:13 +00:00
name string
attributes map[string]interface{}
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",
2017-12-29 15:53:13 +00:00
map[string]interface{}{},
class,
2017-12-27 17:55:58 +00:00
property,
}
}
2017-12-29 15:20:24 +00:00
func (n StaticPropertyFetch) Name() string {
return "StaticPropertyFetch"
}
func (n StaticPropertyFetch) Attributes() map[string]interface{} {
2017-12-29 15:53:13 +00:00
return n.attributes
2017-12-29 15:20:24 +00:00
}
2017-12-27 23:23:32 +00:00
func (n StaticPropertyFetch) 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
}
if n.class != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("class")
2017-12-27 23:23:32 +00:00
n.class.Walk(vv)
}
2017-12-27 17:55:58 +00:00
if n.property != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("property")
2017-12-27 23:23:32 +00:00
n.property.Walk(vv)
}
2017-12-28 11:36:27 +00:00
v.LeaveNode(n)
}