From 44133346923781aaa1022d9b881aeb4e58dd5940 Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 4 Feb 2007 19:17:33 +0000 Subject: * parse.y (rb_compose_ivar2): function to create a new ivar2 symbol from a symbol and a class. back-ported from matzruby. * parse.y (rb_decompose_ivar2): reverse function of rb_compose_ivar2(). * marshal.c (w_symbol): support class local instance variables. * marshal.c (r_object0): ditto. * compile.c (defined_expr): ditto. * compile.c (iseq_compile_each): ditto. * insns.def: add two new instructions: getinstancevariable2 and setinstancevariable2. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 5cea64c20..ec4e9acdc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,25 @@ Sun Feb 4 02:22:59 2007 Akinori MUSHA * lib/cgi.rb (CGI::QueryExtension::read_multipart): Remove a debug print. +Sat Feb 3 23:51:58 2007 Yukihiro Matsumoto + + * parse.y (rb_compose_ivar2): function to create a new ivar2 + symbol from a symbol and a class. back-ported from matzruby. + + * parse.y (rb_decompose_ivar2): reverse function of + rb_compose_ivar2(). + + * marshal.c (w_symbol): support class local instance variables. + + * marshal.c (r_object0): ditto. + + * compile.c (defined_expr): ditto. + + * compile.c (iseq_compile_each): ditto. + + * insns.def: add two new instructions: getinstancevariable2 and + setinstancevariable2. + Sat Feb 3 23:21:13 2007 Yukihiro Matsumoto * insns.def (setclassvariable): remove unnecessary operand. -- cgit