diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-23 06:50:10 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-23 06:50:10 +0000 |
| commit | 1a1c68b5bdee277546403c41361af58ac73da744 (patch) | |
| tree | 94c4e2e5f49f64b8a761d74023312590ff639763 /parse.y | |
| parent | 3a70a89f24e9c748dc5efcfb8a5ed4e5f5527d7e (diff) | |
| download | ruby-1a1c68b5bdee277546403c41361af58ac73da744.tar.gz ruby-1a1c68b5bdee277546403c41361af58ac73da744.tar.xz ruby-1a1c68b5bdee277546403c41361af58ac73da744.zip | |
* parse.y (arg): missing arguments.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1028,11 +1028,11 @@ arg : lhs '=' arg } | tUMINUS_NUM tINTEGER tPOW arg { - $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS); + $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0); } | tUMINUS_NUM tFLOAT tPOW arg { - $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS); + $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0); } | tUPLUS arg { |
