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

20 lines
329 B
Go

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