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