/* * call-seq: * Debugger.checkpoint -> string * * Returns a current checkpoint, which is a name of exception that will * trigger a debugger when raised. */ static VALUE debug_catchpoint(VALUE self) { debug_check_started(); return catchpoint; }