diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-04 08:09:14 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-04 08:09:14 +0000 |
| commit | 6f7b3dccbd0429dcd86ef5d9b697acaa8249f064 (patch) | |
| tree | 039282445855b8cd45ea83fd2c3551e9a50975e9 /eval.c | |
| parent | 3a28abfc3d3ff4b05d3c8c009209e4b7f005eed9 (diff) | |
| download | ruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.tar.gz ruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.tar.xz ruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.zip | |
* object.c (rb_class_real): should not follow ICLASS link
* variable.c (classname): should follow ICLASS link explicitly.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1803,7 +1803,7 @@ is_defined(self, node, buf) case NODE_VCALL: case NODE_FCALL: - val = CLASS_OF(self); + val = self; goto check_bound; case NODE_CALL: @@ -1811,7 +1811,6 @@ is_defined(self, node, buf) PUSH_TAG(PROT_NONE); if ((state = EXEC_TAG()) == 0) { val = rb_eval(self, node->nd_recv); - val = CLASS_OF(val); } POP_TAG(); if (state) { @@ -1821,6 +1820,8 @@ is_defined(self, node, buf) check_bound: { int call = nd_type(node)== NODE_CALL; + + val = CLASS_OF(val); if (call) { int noex; ID id = node->nd_mid; |
