We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4ea95 commit 6c8cdc9Copy full SHA for 6c8cdc9
parse.y
@@ -6264,11 +6264,7 @@ superclass : '<'
6264
$$ = $3;
6265
/*% ripper: $:3 %*/
6266
}
6267
- | /* none */
6268
- {
6269
- $$ = 0;
6270
- /*% ripper: Qnil %*/
6271
- }
+ | none
6272
;
6273
6274
f_opt_paren_args: f_paren_args
@@ -6614,10 +6610,6 @@ opt_f_block_arg : ',' f_block_arg
6614
6610
/*% ripper: $:2 %*/
6615
6611
6616
6612
| none
6617
6618
6619
6620
6621
6613
6622
6623
singleton : value_expr(var_ref)
@@ -6783,6 +6775,7 @@ terms : term
6783
6775
none : /* none */
6784
6776
{
6785
6777
$$ = 0;
6778
+ /*% ripper: Qnil %*/
6786
6779
6787
6780
6788
6781
%%
0 commit comments