class Byebug::SkipCommand

Implements byebug “skip” command

def execute

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

def help(cmd)

def help(cmd)
  %{
    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.
   }
nd

def help_command

def help_command
  %w[skip]
end

def regexp

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