php-parser/node/stmt/property.go
2017-12-29 17:53:13 +02:00

47 lines
745 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Property struct {
name string
attributes map[string]interface{}
variable node.Node
expr node.Node
}
func NewProperty(variable node.Node, expr node.Node) node.Node {
return Property{
"Property",
map[string]interface{}{},
variable,
expr,
}
}
func (n Property) Name() string {
return "Property"
}
func (n Property) Attributes() map[string]interface{} {
return n.attributes
}
func (n Property) 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)
}