class Byebug::SkipCommand

Implements byebug “skip” command

def description

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

def execute

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

def names

def names
  %w(skip)
end

def regexp

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