class SyntaxTree::Unary

def ===(other)

def ===(other)
  other.is_a?(Unary) && operator === other.operator &&
    statement === other.statement
end