From 7387c08373a9421356da2581b1035903ac0a301a Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 6 Jul 2018 13:56:58 +0000 Subject: const_missing on private constants * variable.c (rb_const_search): call #const_missing method on private constants, as well as uninitialized constants. [Feature #14328] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 10a697f8c5..73ef51da49 100644 --- a/vm_core.h +++ b/vm_core.h @@ -836,6 +836,7 @@ typedef struct rb_execution_context_struct { VALUE passed_block_handler; /* for rb_iterate */ const rb_callable_method_entry_t *passed_bmethod_me; /* for bmethod */ enum method_missing_reason method_missing_reason; + VALUE private_const_reference; /* for GC */ struct { -- cgit v1.2.3