php-parser/node/expr/const_fetch.go

33 lines
457 B
Go
Raw Normal View History

2017-12-16 21:07:21 +00:00
package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n ConstFetch) Name() string {
return "ConstFetch"
}
2017-12-16 21:07:21 +00:00
type ConstFetch struct {
2017-12-27 17:55:58 +00:00
name string
constant node.Node
2017-12-16 21:07:21 +00:00
}
2017-12-27 17:55:58 +00:00
func NewConstFetch(constant node.Node) node.Node {
2017-12-16 21:07:21 +00:00
return ConstFetch{
2017-12-27 17:55:58 +00:00
"ConstFetch",
constant,
2017-12-16 21:07:21 +00:00
}
}
2017-12-27 23:23:32 +00:00
func (n ConstFetch) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
2017-12-16 21:07:21 +00:00
2017-12-27 17:55:58 +00:00
if n.constant != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("constant")
n.constant.Walk(vv)
2017-12-16 21:07:21 +00:00
}
}