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

44 lines
621 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type AltElse struct {
position *node.Position
Stmt node.Node
}
func NewAltElse(Stmt node.Node) node.Node {
return &AltElse{
nil,
Stmt,
}
}
func (n AltElse) Attributes() map[string]interface{} {
return nil
}
func (n AltElse) Position() *node.Position {
return n.position
}
func (n AltElse) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n AltElse) 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)
}