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

48 lines
835 B
Go

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