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

56 lines
907 B
Go

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)
}