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

44 lines
600 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Else struct {
position *node.Position
Stmt node.Node
}
func NewElse(Stmt node.Node) node.Node {
return &Else{
nil,
Stmt,
}
}
func (n Else) Attributes() map[string]interface{} {
return nil
}
func (n Else) Position() *node.Position {
return n.position
}
func (n Else) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n Else) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Stmt != nil {
vv := v.GetChildrenVisitor("Stmt")
n.Stmt.Walk(vv)
}
v.LeaveNode(n)
}