--maximum-line-length=60
--extended-continuation-indentation
+==> b1349.in <==
+# S1
+ my ( $database, $primary_id,
+ $optional_id, $comment )
+ = $self
+ ->_rearrange ( [ qw(DATABASE
+ PRIMARY_ID
+ OPTIONAL_ID
+ COMMENT
+ ) ],
+ @args ) ;
+
+# S2
+ my($database,$primary_id,
+ $optional_id,$comment)
+ =$self
+ ->_rearrange(
+ [ qw(DATABASE
+ PRIMARY_ID
+ OPTIONAL_ID
+ COMMENT
+ )
+ ],
+ @args );
+
+
+==> b1349.par <==
+--continuation-indentation=7
+--delete-old-whitespace
+--extended-line-up-parentheses
+--maximum-line-length=37
+--noadd-whitespace
+--variable-maximum-line-length
+--vertical-tightness=2
+--weld-nested-containers
+--break-at-old-method-breakpoints
+
==> b1354.in <==
# S1
while (
# - Add ';' to fix case b1139
# - Convert from '$ok_to_weld' to '$new_weld_ok' to fix b1162.
# - relaxed constraints for b1227
+ # - added skip if type is 'q' for b1349 and b1350 b1351 b1352 b1353
if ( $starting_ci
&& $rOpts_line_up_parentheses
&& $rOpts_delete_old_whitespace
&& !$rOpts_add_whitespace
+ && $rLL->[$Kinner_opening]->[_TYPE_] ne 'q'
&& defined($Kprev) )
{
my $type_first = $rLL->[$Kfirst]->[_TYPE_];