php-parser/node/stmt/constant.go
2018-01-04 22:09:48 +02:00

55 lines
937 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Constant struct {
attributes map[string]interface{}
position *node.Position
constantName node.Node
expr node.Node
}
func NewConstant(constantName node.Node, expr node.Node, phpDocComment string) node.Node {
return &Constant{
map[string]interface{}{
"phpDocComment": phpDocComment,
},
nil,
constantName,
expr,
}
}
func (n Constant) Attributes() map[string]interface{} {
return n.attributes
}
func (n Constant) Position() *node.Position {
return n.position
}
func (n Constant) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
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)
}