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