60 lines
919 B
Go
60 lines
919 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{}) {
|
|
n.attributes[key] = value
|
|
}
|
|
|
|
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)
|
|
}
|