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