php-parser/node/expr/assign_op/shift_right.go
2017-12-27 19:55:58 +02:00

24 lines
332 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/node"
)
func (n ShiftRight) Name() string {
return "ShiftRight"
}
type ShiftRight struct {
AssignOp
}
func NewShiftRight(variable node.Node, expression node.Node) node.Node {
return ShiftRight{
AssignOp{
"AssignShiftRight",
variable,
expression,
},
}
}