--noadd-whitespace
--extended-line-up-parentheses
+==> b1502.in <==
+my $species =
+ new Bio::Species(
+ -classification =>
+ [ qw(
+ sapiens Homo Hominidae Catarrhini Primates Eutheria
+ Mammalia Vertebrata Chordata Metazoa Eukaryota
+ ) ]
+ );
+
+==> b1502.par <==
+--maximum-line-length=29
+--continuation-indentation=8
+--line-up-parentheses
+--weld-nested-containers
+--stack-opening-paren
+--stack-closing-square-bracket
+
==> b156.in <==
# State 1
{
.'pdb_neighbors?id=CHAIN&gene=ORF_NAME'
);
+==> b1502 <==
+my $species =
+ new Bio::Species(
+ -classification => [ qw(
+ sapiens Homo Hominidae Catarrhini Primates Eutheria
+ Mammalia Vertebrata Chordata Metazoa Eukaryota
+ ) ]
+ );
+
==> b156 <==
# State 1
{
# look bad.
next if ( $Kinner_closing == $Kinner_opening );
+ # RULE: Avoid welding under stress. Fixes b1502.
+ my $inner_level = $rLL->[$Kinner_opening]->[_LEVEL_];
+ if ( $inner_level >= $high_stress_level ) { next }
+
# Only weld to quotes delimited with container tokens. This is
# because welding to arbitrary quote delimiters can produce code
# which is less readable than without welding.