# File lib/ruby-debug/commands/skip.rb, line 24defhelp(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.
}end
help_command()click to toggle source
# File lib/ruby-debug/commands/skip.rb, line 20defhelp_command]skip]end
Public Instance Methods
execute()click to toggle source
# File lib/ruby-debug/commands/skip.rb, line 14defexecuteDebugger::skip_next_exceptionprintpr("skip.messages.ok")
end
regexp()click to toggle source
# File lib/ruby-debug/commands/skip.rb, line 7defregexp/ ^\s*
sk(?:ip)? \s*
$
/xend