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

20 lines
332 B
Go

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