# File lib/yard/code_objects/proxy.rb, line 101
      def is_a?(klass)
        if obj = to_obj
          obj.is_a?(klass)
        else
          self.class <= klass
        end
      end