php-parser/node/stmt/class_const_list.go
2018-01-08 21:50:39 +02:00

67 lines
1.1 KiB
Go

package stmt
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type ClassConstList struct {
position *node.Position
comments []comment.Comment
Modifiers []node.Node
Consts []node.Node
}
func NewClassConstList(Modifiers []node.Node, Consts []node.Node) *ClassConstList {
return &ClassConstList{
nil,
nil,
Modifiers,
Consts,
}
}
func (n *ClassConstList) Attributes() map[string]interface{} {
return nil
}
func (n *ClassConstList) Position() *node.Position {
return n.position
}
func (n *ClassConstList) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *ClassConstList) Comments() []comment.Comment {
return n.comments
}
func (n *ClassConstList) SetComments(c []comment.Comment) node.Node {
n.comments = c
return n
}
func (n *ClassConstList) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Modifiers != nil {
vv := v.GetChildrenVisitor("Modifiers")
for _, nn := range n.Modifiers {
nn.Walk(vv)
}
}
if n.Consts != nil {
vv := v.GetChildrenVisitor("Consts")
for _, nn := range n.Consts {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}