php-parser/node/stmt/return.go
2018-01-08 21:50:39 +02:00

56 lines
852 B
Go

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