From 3f8217eff09a55e66cc3bcace02f1f207dadda3d Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 21 Mar 2007 11:15:15 +0000 Subject: * compile.c, parse.y, eval.c, intern.h, iseq.c, lex.c, node.h, proc.c, vm.c, vm_macro.def, vm_macro.def, yarvcore.c, yarvcore.h, debug.c, debug.h: merge half-baked-1.9 changes. The biggest change is to change node structure around NODE_SCOPE, NODE_ARGS. Every scope (method/class/block) has own NODE_SCOPE node and NODE_ARGS represents more details of arguments information. I'll write a document about detail of node structure. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3138fb64b..3adc39ab8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Wed Mar 21 20:05:07 2007 Koichi Sasada + + * compile.c, parse.y, eval.c, intern.h, iseq.c, lex.c, node.h, + proc.c, vm.c, vm_macro.def, vm_macro.def, yarvcore.c, yarvcore.h, + debug.c, debug.h: merge half-baked-1.9 changes. The biggest change + is to change node structure around NODE_SCOPE, NODE_ARGS. Every + scope (method/class/block) has own NODE_SCOPE node and NODE_ARGS + represents more details of arguments information. I'll write a + document about detail of node structure. + + Wed Mar 21 17:04:30 2007 Nobuyoshi Nakada * bignum.c (rb_big2str0): round up for the most significant digit. -- cgit