php-parser/node/expr/assign_op/shift_right.go

20 lines
333 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package assign_op
import (
"github.com/z7zmey/php-parser/node"
)
type ShiftRight struct {
AssignOp
}
func NewShiftRight(variable node.Node, expression node.Node) node.Node {
return ShiftRight{
AssignOp{
node.SimpleNode{Name: "AssignShiftRight", Attributes: make(map[string]string)},
variable,
expression,
},
}
}