php-parser/node/stmt/n_class_extends.go

40 lines
747 B
Go
Raw Normal View History

package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/walker"
)
// ClassExtends node
type ClassExtends struct {
ClassName node.Node
}
// NewClassExtends node constructor
func NewClassExtends(className node.Node) *ClassExtends {
return &ClassExtends{
className,
}
}
// Attributes returns node attributes as map
func (n *ClassExtends) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *ClassExtends) Walk(v walker.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.ClassName != nil {
2018-06-18 20:29:52 +00:00
v.EnterChildNode("ClassName", n)
n.ClassName.Walk(v)
v.LeaveChildNode("ClassName", n)
}
v.LeaveNode(n)
}