php-parser/node/expr/assign_op/pow.go
2018-01-06 14:04:02 +02:00

62 lines
939 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type Pow struct {
AssignOp
}
func NewPow(Variable node.Node, Expression node.Node) node.Node {
return &Pow{
AssignOp{
nil,
nil,
Variable,
Expression,
},
}
}
func (n Pow) Attributes() map[string]interface{} {
return nil
}
func (n Pow) Position() *node.Position {
return n.position
}
func (n Pow) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n Pow) Comments() *[]comment.Comment {
return n.comments
}
func (n Pow) SetComments(c *[]comment.Comment) node.Node {
n.comments = c
return n
}
func (n Pow) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Variable != nil {
vv := v.GetChildrenVisitor("Variable")
n.Variable.Walk(vv)
}
if n.Expression != nil {
vv := v.GetChildrenVisitor("Expression")
n.Expression.Walk(vv)
}
v.LeaveNode(n)
}