package expr import ( "github.com/z7zmey/php-parser/comment" "github.com/z7zmey/php-parser/node" ) type ConstFetch struct { position *node.Position comments *[]comment.Comment Constant node.Node } func NewConstFetch(Constant node.Node) node.Node { return &ConstFetch{ nil, nil, Constant, } } func (n ConstFetch) Attributes() map[string]interface{} { return nil } 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) Comments() *[]comment.Comment { return n.comments } func (n ConstFetch) SetComments(c []comment.Comment) node.Node { n.comments = &c 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) }