53 lines
931 B
Go
53 lines
931 B
Go
package expr
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type ClassConstFetch struct {
|
|
attributes map[string]interface{}
|
|
position *node.Position
|
|
Class node.Node
|
|
ConstantName node.Node
|
|
}
|
|
|
|
func NewClassConstFetch(Class node.Node, ConstantName node.Node) node.Node {
|
|
return &ClassConstFetch{
|
|
map[string]interface{}{},
|
|
nil,
|
|
Class,
|
|
ConstantName,
|
|
}
|
|
}
|
|
|
|
func (n ClassConstFetch) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n ClassConstFetch) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n ClassConstFetch) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n ClassConstFetch) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.ConstantName != nil {
|
|
vv := v.GetChildrenVisitor("ConstantName")
|
|
n.ConstantName.Walk(vv)
|
|
}
|
|
|
|
if n.Class != nil {
|
|
vv := v.GetChildrenVisitor("Class")
|
|
n.Class.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|