# File lib/pry/default_commands/introspection.rb, line 32
      def process_alternatives
        if args.empty? && internal_binding?(target)
          mod = target_self.is_a?(Module) ? target_self : target_self.class
          self.module_object = Pry::WrappedModule(mod)

          process_module
        else
          process_method
        end
      end