class SyntaxTree::Paren

def ===(other)

def ===(other)
  other.is_a?(Paren) && lparen === other.lparen &&
    contents === other.contents
end