module Debugger class CatchCommand < Command # :nodoc: self.control = true def regexp /^\s* cat(?:ch)? (?:\s+ (\S+))? (?:\s+ (off))? \s* $/ix end def execute excn = @match[1] if not excn # No args given. errmsg "Exception class must be specified for 'catch' command" elsif not @match[2] # One arg given. if 'off' == excn Debugger.catchpoints.clear else binding = @state.context ? get_binding : TOPLEVEL_BINDING unless debug_eval("#{excn}.is_a?(Class)", binding) print_msg "Warning #{excn} is not known to be a Class" end Debugger.add_catchpoint(excn) print_catchpoint_set(excn) end elsif @match[2] != 'off' errmsg "Off expected. Got %s\n", @match[2] elsif Debugger.catchpoints.member?(excn) Debugger.catchpoints.delete(excn) print_catchpoint_set(excn) #print "Catch for exception %s removed.\n", excn else errmsg "Catch for exception %s not found.\n", excn end end class << self def help_command 'catch' end def help(cmd) %{ cat[ch]\t\t\tshow catchpoint cat[ch] \tset catchpoint to an exception } end end end end