php-parser/node/expr/include_once.go
2017-12-28 01:23:32 +02:00

33 lines
448 B
Go

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