php-parser/node/expr/assign_op/concat.go
2017-12-28 01:23:32 +02:00

40 lines
556 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/node"
)
func (n Concat) Name() string {
return "Concat"
}
type Concat struct {
AssignOp
}
func NewConcat(variable node.Node, expression node.Node) node.Node {
return Concat{
AssignOp{
"AssignConcat",
variable,
expression,
},
}
}
func (n Concat) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.variable != nil {
vv := v.Children("variable")
n.variable.Walk(vv)
}
if n.expression != nil {
vv := v.Children("expression")
n.expression.Walk(vv)
}
}