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

68 lines
1.1 KiB
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type StaticVar struct {
name string
attributes map[string]interface{}
position *node.Position
variable node.Node
expr node.Node
}
func NewStaticVar(variable node.Node, expr node.Node) node.Node {
return StaticVar{
"StaticVar",
map[string]interface{}{},
nil,
variable,
expr,
}
}
func (n StaticVar) Name() string {
return "StaticVar"
}
func (n StaticVar) Attributes() map[string]interface{} {
return n.attributes
}
func (n StaticVar) Attribute(key string) interface{} {
return n.attributes[key]
}
func (n StaticVar) SetAttribute(key string, value interface{}) node.Node {
n.attributes[key] = value
return n
}
func (n StaticVar) Position() *node.Position {
return n.position
}
func (n StaticVar) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n StaticVar) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.variable != nil {
vv := v.GetChildrenVisitor("variable")
n.variable.Walk(vv)
}
if n.expr != nil {
vv := v.GetChildrenVisitor("expr")
n.expr.Walk(vv)
}
v.LeaveNode(n)
}