php-parser/node/expr/assign_op/shift_left.go
2017-12-12 23:26:00 +02:00

20 lines
329 B
Go

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