php-parser/node/expr/include_once.go
2018-01-09 00:30:28 +02:00

44 lines
668 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type IncludeOnce struct {
position *node.Position
Expr node.Node
}
func NewIncludeOnce(Expression node.Node) *IncludeOnce {
return &IncludeOnce{
nil,
Expression,
}
}
func (n *IncludeOnce) Attributes() map[string]interface{} {
return nil
}
func (n *IncludeOnce) Position() *node.Position {
return n.position
}
func (n *IncludeOnce) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
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)
}