summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@semiotic.systems>2021-06-06 15:56:23 -0400
committerRicardo Signes <rjbs@semiotic.systems>2021-07-25 15:37:14 -0400
commit915e574d301f00ab410e345d06c5c0a992c95c1f (patch)
tree87e9e9c9a9adbeda16e214e7e47adf84277d2e0c /regen
parent25662648e3c1a099a130ca7dc7779a4068c136a0 (diff)
downloadperl-915e574d301f00ab410e345d06c5c0a992c95c1f.tar.gz
feature.pm: drop "switch" from latest version bundle
Diffstat (limited to 'regen')
-rwxr-xr-xregen/feature.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/regen/feature.pl b/regen/feature.pl
index e4f8386a02..a528fe5ba8 100755
--- a/regen/feature.pl
+++ b/regen/feature.pl
@@ -55,6 +55,7 @@ use constant V5_11 => sort ( +V5_9_5, qw{unicode_strings} );
use constant V5_15 => sort ( +V5_11, qw{unicode_eval evalbytes current_sub fc} );
use constant V5_23 => sort ( +V5_15, qw{postderef_qq} );
use constant V5_27 => sort ( +V5_23, qw{bitwise} );
+use constant V5_35 => sort ( grep {; $_ ne 'switch' } +V5_27);
my %feature_bundle = (
all => [ sort keys %feature ],
@@ -78,7 +79,8 @@ my %feature_bundle = (
"5.29" => [ +V5_27 ],
"5.31" => [ +V5_27 ],
"5.33" => [ +V5_27 ],
- "5.35" => [ +V5_27 ],
+ # using 5.35 features bundle
+ "5.35" => [ +V5_35 ],
);
my @noops = qw( postderef lexical_subs );