-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* parse.y, node.h, compile.c: change node tree structure. a purpose
of this change is to unify argument structure of method and block. this change prohibits duplicate block parameter name. new argument infromation: NODE_ARGS [m: int, o: NODE_OPT_ARG, ->] NODE_ARGS_AUX [r: ID, b: ID, ->] NODE_ARGS_AUX [Pst: id, Plen: int, init: NODE*] optarg information: NODE_OPT_ARGS [idx, expr, ->] * vm_macro.def: ditto. * gc.c: ditto. * iseq.c: ditto. * compile.h: fix debug function name. * test/ripper/test_scanner_events.rb: |_,_,foo| -> |_1,_2,foo| * test/ruby/test_lambda.rb: disalbe test temporarily. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
10 changed files
with
251 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
Sat Feb 24 10:49:55 2007 Koichi Sasada <[email protected]> | ||
|
||
* parse.y, node.h, compile.c: change node tree structure. a purpose | ||
of this change is to unify argument structure of method and block. | ||
this change prohibits duplicate block parameter name. | ||
new argument infromation: | ||
NODE_ARGS [m: int, o: NODE_OPT_ARG, ->] | ||
NODE_ARGS_AUX [r: ID, b: ID, ->] | ||
NODE_ARGS_AUX [Pst: id, Plen: int, init: NODE*] | ||
optarg information: | ||
NODE_OPT_ARGS [idx, expr, ->] | ||
|
||
* vm_macro.def: ditto. | ||
|
||
* gc.c: ditto. | ||
|
||
* iseq.c: ditto. | ||
|
||
* compile.h: fix debug function name. | ||
|
||
* test/ripper/test_scanner_events.rb: |_,_,foo| -> |_1,_2,foo| | ||
|
||
* test/ruby/test_lambda.rb: disalbe test temporarily. | ||
|
||
Sat Feb 24 10:46:28 2007 Koichi Sasada <[email protected]> | ||
|
||
* test/testunit/test_testcase.rb: catch up with current instance | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.