package binary_op import ( "github.com/z7zmey/php-parser/node" ) func (n Concat) Name() string { return "Concat" } type Concat struct { BinaryOp } func NewConcat(variable node.Node, expression node.Node) node.Node { return Concat{ BinaryOp{ "BinaryConcat", variable, expression, }, } }