/*
 *   call-seq:
 *      context.breakpoint -> breakpoint
 *
 *   Returns a context-specific temporary Breakpoint object.
 */
static VALUE
context_breakpoint(VALUE self)
{
    debug_context_t *debug_context;

    debug_check_started();

    Data_Get_Struct(self, debug_context_t, debug_context);
    return debug_context->breakpoint;
}