2017-12-07 09:46:25 +00:00
|
|
|
package stmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
2017-12-27 23:23:32 +00:00
|
|
|
func (n StmtList) Name() string {
|
2017-12-27 17:55:58 +00:00
|
|
|
return "StmtList"
|
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:25 +00:00
|
|
|
type StmtList struct {
|
2017-12-27 17:55:58 +00:00
|
|
|
name string
|
2017-12-18 22:55:57 +00:00
|
|
|
stmts []node.Node
|
2017-12-07 09:46:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 22:55:57 +00:00
|
|
|
func NewStmtList(stmts []node.Node) node.Node {
|
2017-12-07 09:46:25 +00:00
|
|
|
return StmtList{
|
2017-12-27 17:55:58 +00:00
|
|
|
"StmtList",
|
2017-12-07 09:46:25 +00:00
|
|
|
stmts,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-27 23:23:32 +00:00
|
|
|
func (n StmtList) Walk(v node.Visitor) {
|
|
|
|
if v.Visit(n) == false {
|
|
|
|
return
|
|
|
|
}
|
2017-12-07 09:46:25 +00:00
|
|
|
|
|
|
|
if n.stmts != nil {
|
2017-12-27 23:23:32 +00:00
|
|
|
vv := v.Children("stmts")
|
2017-12-07 09:46:25 +00:00
|
|
|
for _, nn := range n.stmts {
|
2017-12-27 23:23:32 +00:00
|
|
|
nn.Walk(vv)
|
2017-12-07 09:46:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|