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

48 lines
774 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Constant struct {
name string
attributes map[string]interface{}
constantName node.Node
expr node.Node
}
func NewConstant(constantName node.Node, expr node.Node) node.Node {
return Constant{
"Constant",
map[string]interface{}{},
constantName,
expr,
}
}
func (n Constant) Name() string {
return "Constant"
}
func (n Constant) Attributes() map[string]interface{} {
return n.attributes
}
func (n Constant) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.constantName != nil {
vv := v.GetChildrenVisitor("constantName")
n.constantName.Walk(vv)
}
if n.expr != nil {
vv := v.GetChildrenVisitor("expr")
n.expr.Walk(vv)
}
v.LeaveNode(n)
}