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

20 lines
333 B
Go

package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
type ShiftRight struct {
BinaryOp
}
func NewShiftRight(variable node.Node, expression node.Node) node.Node {
return ShiftRight{
BinaryOp{
node.SimpleNode{Name: "BinaryShiftRight", Attributes: make(map[string]string)},
variable,
expression,
},
}
}