/*
 *   call-seq:
 *      context.frame_file(frame) -> string
 *
 *   Returns the name of the file.
 */
static VALUE
context_frame_file(VALUE self, VALUE frame)
{
    debug_context_t *debug_context;

    debug_check_started();
    Data_Get_Struct(self, debug_context_t, debug_context);

    return rb_str_new2(GET_FRAME->file);
}