summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 08:31:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-01 08:31:24 +0000
commit0f0db4163d632fac904fc5c0994571fc3054338a (patch)
treed0f8efcffa9f4edd24bf5f1b4d544bfeaa7c0520 /vm_insnhelper.c
parent00e2e039629ef18938e6ed901d69ceadfcddc31f (diff)
* insns.def (defineclass), vm_insnhelper.c (vm_get_cvar_base): see
also inherited constants for classes without superclass and modules. [ruby-core:37698] [Bug #3423] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index a35dbb1196..609e620151 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1252,6 +1252,16 @@ vm_get_cvar_base(NODE *cref)
return klass;
}
+static int
+vm_const_defined_at(VALUE cbase, ID id, int newclass)
+{
+ int ret = rb_const_defined_at(cbase, id);
+ if (!ret && !newclass) {
+ while ((cbase = RCLASS_SUPER(cbase)) != 0 && cbase != rb_cObject &&
+ !(ret = rb_const_defined_at(cbase, id)));
+ }
+ return ret;
+}
#ifndef USE_IC_FOR_IVAR
#define USE_IC_FOR_IVAR 1