php-parser/node/stmt/while.go
2017-12-28 01:23:32 +02:00

43 lines
591 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
type While struct {
name string
token token.Token
cond node.Node
stmt node.Node
}
func NewWhile(token token.Token, cond node.Node, stmt node.Node) node.Node {
return While{
"While",
token,
cond,
stmt,
}
}
func (n While) Name() string {
return "While"
}
func (n While) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.cond != nil {
vv := v.Children("cond")
n.cond.Walk(vv)
}
if n.stmt != nil {
vv := v.Children("stmt")
n.stmt.Walk(vv)
}
}