summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-23 05:52:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-23 05:52:18 +0000
commita6ed135520268c1dc0c0cc33188a241f93f736f3 (patch)
treee8b4c45bcdd3f028798f255a211d6a6d4ce952b4 /parse.y
parentd834d3a763e7aecc168bc87c9ca26d4835694db3 (diff)
* parse.y (stmt, arg, aref_args): should not make sole splat into
array, in aref_args other than aref with op_asgn. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 6 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index deda89b8cb..09d2a67a55 100644
--- a/parse.y
+++ b/parse.y
@@ -169,7 +169,7 @@ static void top_local_setup();
#define NODE_STRTERM NODE_ZARRAY /* nothing to gc */
#define NODE_HEREDOC NODE_ARRAY /* 1, 3 to gc */
-#define SIGN_EXTEND(x,n) (((1<<(n))-1-((x)&~(~0<<(n))))^~(~0<<(n)))
+#define SIGN_EXTEND(x,n) (((1<<(n)-1)^((x)&~(~0<<(n))))-(1<<(n)-1))
#define nd_func u1.id
#if SIZEOF_SHORT == 2
#define nd_term(node) ((signed short)(node)->u2.id)
@@ -533,6 +533,8 @@ stmt : kALIAS fitem {lex_state = EXPR_FNAME;} fitem
value_expr($6);
args = NEW_LIST($6);
+ if ($3 && nd_type($3) != NODE_ARRAY)
+ $3 = NEW_LIST($3);
$3 = list_append($3, NEW_NIL());
list_concat(args, $3);
if ($5 == tOROP) {
@@ -995,6 +997,8 @@ arg : lhs '=' arg
value_expr($6);
args = NEW_LIST($6);
+ if ($3 && nd_type($3) != NODE_ARRAY)
+ $3 = NEW_LIST($3);
$3 = list_append($3, NEW_NIL());
list_concat(args, $3);
if ($5 == tOROP) {
@@ -1235,7 +1239,7 @@ aref_args : none
| tSTAR arg opt_nl
{
value_expr($2);
- $$ = NEW_LIST(NEW_SPLAT($2));
+ $$ = newline_node(NEW_SPLAT($2));
}
;