summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/-test-/exception/ensured.c
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/-test-/exception/ensured.c
Fresh start
Diffstat (limited to 'jni/ruby/ext/-test-/exception/ensured.c')
-rw-r--r--jni/ruby/ext/-test-/exception/ensured.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/jni/ruby/ext/-test-/exception/ensured.c b/jni/ruby/ext/-test-/exception/ensured.c
new file mode 100644
index 0000000..365e1f4
--- /dev/null
+++ b/jni/ruby/ext/-test-/exception/ensured.c
@@ -0,0 +1,25 @@
+#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);
+}