--want-trailing-commas='h'
--delete-trailing-commas
+==> b148.in <==
+# state 1
+@yydgoto=(
+ 1,25,140,86,36,129,141,155,90,159,28,82,38,48,
+ 132,40,91,147,134,151,160,29,130,77,78,158,30, );
+
+# state 2
+@yydgoto=(
+ 1,25,140,86,36,129,141,155,90,159,28,82,38,48,132,40,91,147,134,151,160,29,130,77,78,158,30, );
+
+
+==> b148.par <==
+--noadd-whitespace
+--break-before-paren-and-indent=1
+--break-before-paren=2
+--extended-continuation-indentation
+--maximum-line-length=95
+--paren-vertical-tightness-closing=1
+--variable-maximum-line-length
+
==> b1481.in <==
$hr
->set_uri_schemes
--delete-old-whitespace
--stack-opening-square-bracket
-==> b148.in <==
-# state 1
-@yydgoto=(
- 1,25,140,86,36,129,141,155,90,159,28,82,38,48,
- 132,40,91,147,134,151,160,29,130,77,78,158,30, );
+==> b1482.in <==
+@ISA =
+ qw(
+ Net::FTP::I) ;
-# state 2
-@yydgoto=(
- 1,25,140,86,36,129,141,155,90,159,28,82,38,48,132,40,91,147,134,151,160,29,130,77,78,158,30, );
+@ISA =
+ qw(Net::FTP::I
+ ) ;
+==> b1482.par <==
+--maximum-line-length=21
+--continuation-indentation=6
+--noadd-whitespace
+--qw-as-function
+--want-break-after='='
-==> b148.par <==
+==> b1485.in <==
+use
+ UnixODBC qw(
+ :all);
+use
+ UnixODBC qw(
+ :all
+ );
+
+==> b1485.par <==
+--maximum-line-length=15
+--indent-columns=9
--noadd-whitespace
---break-before-paren-and-indent=1
---break-before-paren=2
---extended-continuation-indentation
---maximum-line-length=95
---paren-vertical-tightness-closing=1
---variable-maximum-line-length
+--qw-as-function
==> b156.in <==
# State 1
my $qw_text = $rLL->[-1]->[_TOKEN_];
my $qw_type = $rLL->[-1]->[_TYPE_];
+ my $qw_level = $rLL->[-1]->[_LEVEL_];
my $qw_text_start = $qw_text;
my $opening = EMPTY_STRING;
my $closing = EMPTY_STRING;
+ # the new word tokens are 1 level deeper than the original 'q' token
+ my $level_words = $qw_level + 1;
+
if ( $qw_type ne 'q' ) {
# This should never happen because the calling sub should have just
}
$qw_text = substr( $qw_text, 3 );
$qw_text =~ s/^\s+//;
+
+ # Do not use -qwaf under high stress (b1482,b1483,b1484,b1485,1486)
+ # Note: so far all known cases of stress instability have had -naws
+ # set, so this is included for now. It may eventually need to be
+ # removed.
+ if ( !$rOpts_add_whitespace && $level_words >= $high_stress_level )
+ {
+ return;
+ }
}
# Look for and remove any closing ')'
# now push on the replacement tokens
my $nonblank_push_count = 0;
- # the new word tokens are 1 level deeper than the original 'q' token
- my $level_words = $rtoken_q->[_LEVEL_] + 1;
-
if ($opening) {
# generate a new sequence number, one greater than the previous,