php-parser/node/expr/include_once.go
2017-12-29 17:20:24 +02:00

39 lines
553 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type IncludeOnce struct {
name string
expr node.Node
}
func NewIncludeOnce(expression node.Node) node.Node {
return IncludeOnce{
"IncludeOnce",
expression,
}
}
func (n IncludeOnce) Name() string {
return "IncludeOnce"
}
func (n IncludeOnce) Attributes() map[string]interface{} {
return nil
}
func (n IncludeOnce) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.expr != nil {
vv := v.GetChildrenVisitor("expr")
n.expr.Walk(vv)
}
v.LeaveNode(n)
}