Skip to content

Commit 6c8cdc9

Browse files
committed
Change superclass rhs to use none
1 parent db4ea95 commit 6c8cdc9

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

parse.y

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6264,11 +6264,7 @@ superclass : '<'
62646264
$$ = $3;
62656265
/*% ripper: $:3 %*/
62666266
}
6267-
| /* none */
6268-
{
6269-
$$ = 0;
6270-
/*% ripper: Qnil %*/
6271-
}
6267+
| none
62726268
;
62736269

62746270
f_opt_paren_args: f_paren_args
@@ -6614,10 +6610,6 @@ opt_f_block_arg : ',' f_block_arg
66146610
/*% ripper: $:2 %*/
66156611
}
66166612
| none
6617-
{
6618-
$$ = 0;
6619-
/*% ripper: Qnil %*/
6620-
}
66216613
;
66226614

66236615
singleton : value_expr(var_ref)
@@ -6783,6 +6775,7 @@ terms : term
67836775
none : /* none */
67846776
{
67856777
$$ = 0;
6778+
/*% ripper: Qnil %*/
67866779
}
67876780
;
67886781
%%

0 commit comments

Comments
 (0)