php-parser/node/expr/require_once.go
2018-01-05 17:09:04 +02:00

56 lines
908 B
Go

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