mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parse.y: moved excessed_comma
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bc76d8a232
commit
bda6df356a
1 changed files with 4 additions and 1 deletions
5
parse.y
5
parse.y
|
@ -315,6 +315,10 @@ static int parser_yyerror(struct parser_params*, const YYLTYPE *yylloc, const ch
|
|||
|
||||
#define lambda_beginning_p() (p->lex.lpar_beg == p->lex.paren_nest)
|
||||
|
||||
#ifndef RIPPER
|
||||
static const ID excessed_comma = 1;
|
||||
#endif
|
||||
|
||||
static enum yytokentype yylex(YYSTYPE*, YYLTYPE*, struct parser_params*);
|
||||
|
||||
#ifndef RIPPER
|
||||
|
@ -3050,7 +3054,6 @@ block_param : f_arg ',' f_block_optarg ',' f_rest_arg opt_block_args_tail
|
|||
{
|
||||
/*%%%*/
|
||||
/* magic number for rest_id in iseq_set_arguments() */
|
||||
const ID excessed_comma = 1;
|
||||
$$ = new_args(p, $1, Qnone, excessed_comma, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, &@1), &@$);
|
||||
/*% %*/
|
||||
/*% ripper: new_args(p, $1, Qnone, excessed_comma!, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, NULL), NULL) %*/
|
||||
|
|
Loading…
Add table
Reference in a new issue