class SyntaxTree::Binary

def ===(other)

def ===(other)
  other.is_a?(Binary) && left === other.left &&
    operator === other.operator && right === other.right
end