/*
 *   call-seq:
 *      context.frame_binding(frame) -> binding
 *
 *   Returns frame's binding.
 */
static VALUE
context_frame_binding(VALUE self, VALUE frame)
{
    debug_context_t *debug_context;

    debug_check_started();
    Data_Get_Struct(self, debug_context_t, debug_context);
    return GET_FRAME->binding;
}