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

46 lines
640 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Echo struct {
position *node.Position
Exprs []node.Node
}
func NewEcho(Exprs []node.Node) *Echo {
return &Echo{
nil,
Exprs,
}
}
func (n *Echo) Attributes() map[string]interface{} {
return nil
}
func (n *Echo) Position() *node.Position {
return n.position
}
func (n *Echo) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *Echo) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Exprs != nil {
vv := v.GetChildrenVisitor("Exprs")
for _, nn := range n.Exprs {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}