# File lib/typed_sexp_processor.rb, line 10
  def ==(obj)
    case obj
    when TypedSexp
      super && sexp_type == obj.sexp_type
    else
      false
    end
  end