From 0c031468fe31537bad55ce558e22a6c5da527d7d Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 18 Aug 2007 05:07:07 +0000 Subject: * compile.c (iseq_compile_each): fix to allow self.x= if x= is private. * bootstraptest/test_method.rb: add a test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 1 + 1 file changed, 1 insertion(+) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 2e7ac73506..a5e997bd92 100644 --- a/compile.c +++ b/compile.c @@ -4359,6 +4359,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) argc = setup_args(iseq, args, node->nd_args, &flag); if (node->nd_recv == (NODE *) 1) { + flag |= VM_CALL_FCALL_BIT; ADD_INSN(recv, nd_line(node), putself); } else { -- cgit v1.2.3