php-parser/node/stmt/stmt_list.go
2018-01-05 00:12:01 +02:00

46 lines
667 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type StmtList struct {
position *node.Position
Stmts []node.Node
}
func NewStmtList(Stmts []node.Node) node.Node {
return StmtList{
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) 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)
}