package binary_op import ( "github.com/z7zmey/php-parser/node" ) type BitwiseXor struct { BinaryOp } func NewBitwiseXor(Variable node.Node, Expression node.Node) *BitwiseXor { return &BitwiseXor{ BinaryOp{ Variable, Expression, }, } } func (n *BitwiseXor) Attributes() map[string]interface{} { return nil } func (n *BitwiseXor) 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) }