lib/byebug/commands/skip.rb



module Byebug

  # Implements byebug "skip" command
  class SkipCommand < Command
    self.allow_in_control = true

    def regexp
      /^\s* sk(?:ip)? \s*$/x
    end

    def execute
      Byebug::skip_next_exception
      print "ok\n"
    end

    class << self
      def names
        %w(skip)
      end

      def description
        %{sk[ip]\tskip the next thrown exception

          This is useful if you've explicitly caught an exception through the
          "catch" command, and wish to pass the exception on to the code that
          you're debugging.}
      end
    end
  end
end