mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
26 lines
421 B
C
26 lines
421 B
C
|
#include <ruby.h>
|
||
|
|
||
|
static VALUE
|
||
|
begin(VALUE object)
|
||
|
{
|
||
|
return rb_funcall(object, rb_intern("try_method"), 0);
|
||
|
}
|
||
|
|
||
|
static VALUE
|
||
|
ensure(VALUE object)
|
||
|
{
|
||
|
return rb_funcall(object, rb_intern("ensured_method"), 0);
|
||
|
}
|
||
|
|
||
|
static VALUE
|
||
|
ensured(VALUE module, VALUE object)
|
||
|
{
|
||
|
return rb_ensure(begin, object, ensure, object);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
Init_ensured(VALUE klass)
|
||
|
{
|
||
|
rb_define_module_function(klass, "ensured", ensured, 1);
|
||
|
}
|