summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 265088caac..1eed081fea 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1070,6 +1070,12 @@ vm_get_ev_const(rb_execution_context_t *ec, VALUE orig_klass, ID id, bool allow_
}
}
+VALUE
+rb_vm_get_ev_const(rb_execution_context_t *ec, VALUE orig_klass, ID id, VALUE allow_nil)
+{
+ return vm_get_ev_const(ec, orig_klass, id, allow_nil == Qtrue, 0);
+}
+
static inline VALUE
vm_get_ev_const_chain(rb_execution_context_t *ec, const ID *segments)
{