php-parser/node/stmt/n_case_list.go

44 lines
746 B
Go
Raw Normal View History

2018-04-29 20:10:56 +00:00
package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/walker"
)
// CaseList node
type CaseList struct {
Cases []node.Node
}
// NewCaseList node constructor
func NewCaseList(Cases []node.Node) *CaseList {
return &CaseList{
Cases,
}
}
// Attributes returns node attributes as map
func (n *CaseList) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *CaseList) Walk(v walker.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Cases != nil {
2018-06-18 20:29:52 +00:00
v.EnterChildList("Cases", n)
2018-04-29 20:10:56 +00:00
for _, nn := range n.Cases {
if nn != nil {
2018-06-18 20:29:52 +00:00
nn.Walk(v)
2018-04-29 20:10:56 +00:00
}
}
2018-06-18 20:29:52 +00:00
v.LeaveChildList("Cases", n)
2018-04-29 20:10:56 +00:00
}
v.LeaveNode(n)
}