php-parser/node/stmt/else.go
2018-01-02 14:11:08 +02:00

61 lines
941 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Else struct {
name string
attributes map[string]interface{}
position *node.Position
stmt node.Node
}
func NewElse(stmt node.Node) node.Node {
return Else{
"Else",
map[string]interface{}{},
nil,
stmt,
}
}
func (n Else) Name() string {
return "Else"
}
func (n Else) Attributes() map[string]interface{} {
return n.attributes
}
func (n Else) Attribute(key string) interface{} {
return n.attributes[key]
}
func (n Else) SetAttribute(key string, value interface{}) node.Node {
n.attributes[key] = value
return n
}
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)
}