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

46 lines
738 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ConstFetch struct {
attributes map[string]interface{}
position *node.Position
constant node.Node
}
func NewConstFetch(constant node.Node) node.Node {
return &ConstFetch{
map[string]interface{}{},
nil,
constant,
}
}
func (n ConstFetch) Attributes() map[string]interface{} {
return n.attributes
}
func (n ConstFetch) Position() *node.Position {
return n.position
}
func (n ConstFetch) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n ConstFetch) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.constant != nil {
vv := v.GetChildrenVisitor("constant")
n.constant.Walk(vv)
}
v.LeaveNode(n)
}