php-parser/node/expr/assign_op/assign_ref.go
2017-12-18 21:34:11 +02:00

20 lines
322 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/node"
)
type AssignRef struct {
AssignOp
}
func NewAssignRef(variable node.Node, expression node.Node) node.Node {
return AssignRef{
AssignOp{
node.SimpleNode{Name: "AssignRef", Attributes: make(map[string]string)},
variable,
expression,
},
}
}