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

65 lines
1.0 KiB
Go

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