61 lines
996 B
Go
61 lines
996 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{
|
|
map[string]interface{}{},
|
|
nil,
|
|
variable,
|
|
expression,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (n BitwiseAnd) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n BitwiseAnd) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n BitwiseAnd) SetAttribute(key string, value interface{}) node.Node {
|
|
n.attributes[key] = value
|
|
return n
|
|
}
|
|
|
|
func (n BitwiseAnd) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n BitwiseAnd) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n BitwiseAnd) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.left != nil {
|
|
vv := v.GetChildrenVisitor("left")
|
|
n.left.Walk(vv)
|
|
}
|
|
|
|
if n.right != nil {
|
|
vv := v.GetChildrenVisitor("right")
|
|
n.right.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|