From 43f68272c7fc50ba33c58f7e22923bac6fc204ac Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 4 Feb 2002 08:09:14 +0000 Subject: * object.c (rb_class_real): should not follow ICLASS link * variable.c (classname): should follow ICLASS link explicitly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 576b98b529..a9b79403b5 100644 --- a/eval.c +++ b/eval.c @@ -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; -- cgit v1.2.3