--extended-continuation-indentation
--brace-tightness=2
+==> b1475.in <==
+run_sub (
+ ->$blah{ say "ok 5" ; } ) ;
+
+run_sub ( ->$blah{ say "ok 5" ; }
+) ;
+
+
+==> b1475.par <==
+--maximum-line-length=36
+--extended-continuation-indentation
+--paren-vertical-tightness=2
+--extended-line-up-parentheses
+--space-function-paren
+--space-terminal-semicolon
+--break-at-old-method-breakpoints
+
==> b148.in <==
# state 1
@yydgoto=(
iparse( {Maxiter => 200, Eps => 1e-4,}, ifhref($opt) )
};
+==> b1475 <==
+run_sub (
+ ->$blah{ say "ok 5" ; } ) ;
+
+run_sub (
+ ->$blah{ say "ok 5" ; } ) ;
+
+
==> b148 <==
# state 1
@yydgoto=(
# leading '->' use a value of 2 which causes a soft
# break rather than a hard break
if ( $type eq '->' ) {
+
+ # ignore -bom after an opening token ( a syntax error, b1475 )
+ my $Kp = $self->K_previous_nonblank($Kfirst);
+ next if ( !defined($Kp) );
+ next if ( $is_opening_type{ $rLL->[$Kp]->[_TYPE_] } );
+
$rbreak_before_Kfirst->{$Kfirst} = 2;
}