This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Inching towards Module::Build-ability on VMS.
[perl5.git] / lib / feature.pm
CommitLineData
0d863452
RH
1package feature;
2
8fd870d9 3our $VERSION = '1.10';
0d863452
RH
4
5# (feature name) => (internal name, used in %^H)
6my %feature = (
7b9ef140 7 switch => 'feature_switch',
7b9ef140 8 say => "feature_say",
bc9b29db 9 err => "feature_err",
712d05cf 10 state => "feature_state",
bc9b29db
RH
11);
12
13my %feature_bundle = (
3e7dd34d 14 "5.10.0" => [qw(switch say err state)],
0d863452 15);
8fd870d9
RGS
16# latest version here
17# keep it harcoded until we actually bump the version number to 5.10
18$feature_bundle{"5.10"} = $feature_bundle{"5.10.0"};
19#$feature_bundle{"5.10"} = $feature_bundle{sprintf("%vd",$^V)};
0d863452 20
7dfde25d
RGS
21$feature_bundle{"5.9.5"} = $feature_bundle{"5.10.0"};
22
0d863452 23# TODO:
1c321dc6 24# - think about versioned features (use feature switch => 2)
0d863452
RH
25
26=head1 NAME
27
28feature - Perl pragma to enable new syntactic features
29
30=head1 SYNOPSIS
31
bc9b29db 32 use feature qw(switch say);
0d863452 33 given ($foo) {
bc9b29db
RH
34 when (1) { say "\$foo == 1" }
35 when ([2,3]) { say "\$foo == 2 || \$foo == 3" }
36 when (/^a[bc]d$/) { say "\$foo eq 'abd' || \$foo eq 'acd'" }
37 when ($_ > 100) { say "\$foo > 100" }
38 default { say "None of the above" }
0d863452
RH
39 }
40
ec488c7f
RGS
41 use feature ':5.10'; # loads all features available in perl 5.10
42
0d863452
RH
43=head1 DESCRIPTION
44
45It is usually impossible to add new syntax to Perl without breaking
46some existing programs. This pragma provides a way to minimize that
47risk. New syntactic constructs can be enabled by C<use feature 'foo'>,
48and will be parsed only when the appropriate feature pragma is in
49scope.
50
9eb27be9
RGS
51=head2 Lexical effect
52
53Like other pragmas (C<use strict>, for example), features have a lexical
5e36ed56 54effect. C<use feature qw(foo)> will only make the feature "foo" available
9eb27be9
RGS
55from that point to the end of the enclosing block.
56
57 {
58 use feature 'say';
59 say "say is available here";
60 }
61 print "But not here.\n";
62
5e36ed56
RGS
63=head2 C<no feature>
64
65Features can also be turned off by using C<no feature "foo">. This too
66has lexical effect.
67
68 use feature 'say';
69 say "say is available here";
70 {
71 no feature 'say';
72 print "But not here.\n";
73 }
74 say "Yet it is here.";
75
76C<no feature> with no features specified will turn off all features.
77
0d863452
RH
78=head2 The 'switch' feature
79
80C<use feature 'switch'> tells the compiler to enable the Perl 6
9eb27be9 81given/when construct.
0d863452
RH
82
83See L<perlsyn/"Switch statements"> for details.
84
0d863452
RH
85=head2 The 'say' feature
86
87C<use feature 'say'> tells the compiler to enable the Perl 6
9eb27be9 88C<say> function.
0d863452
RH
89
90See L<perlfunc/say> for details.
91
bc9b29db
RH
92=head2 the 'err' feature
93
94C<use feature 'err'> tells the compiler to enable the C<err>
9eb27be9 95operator.
bc9b29db
RH
96
97C<err> is a low-precedence variant of the C<//> operator:
98see C<perlop> for details.
99
712d05cf
RGS
100=head2 the 'state' feature
101
102C<use feature 'state'> tells the compiler to enable C<state>
9eb27be9 103variables.
712d05cf 104
e60bcc8b
RGS
105See L<perlsub/"Persistent Private Variables"> for details.
106
bc9b29db
RH
107=head1 FEATURE BUNDLES
108
109It's possible to load a whole slew of features in one go, using
110a I<feature bundle>. The name of a feature bundle is prefixed with
111a colon, to distinguish it from an actual feature. At present, the
8fd870d9 112only feature bundles are C<use feature ":5.10"> and C<use feature ":5.10.0">,
3e7dd34d 113which both are equivalent to C<use feature qw(switch say err state)>.
8fd870d9
RGS
114
115In the forthcoming 5.10.X perl releases, C<use feature ":5.10"> will be
116equivalent to the latest C<use feature ":5.10.X">.
bc9b29db 117
7dfde25d
RGS
118=head1 IMPLICIT LOADING
119
120There are two ways to load the C<feature> pragma implicitly :
121
122=over 4
123
124=item *
125
126By using the C<-E> switch on the command-line instead of C<-e>. It enables
127all available features in the main compilation unit (that is, the one-liner.)
128
129=item *
130
131By requiring explicitly a minimal Perl version number for your program, with
132the C<use VERSION> construct, and when the version is higher than or equal to
1335.9.5. That is,
134
135 use 5.9.5;
136
137will do an implicit
138
139 use feature ':5.9.5';
140
141and so on.
142
143=back
144
0d863452
RH
145=cut
146
147sub import {
0d863452
RH
148 my $class = shift;
149 if (@_ == 0) {
0d863452
RH
150 croak("No features specified");
151 }
152 while (@_) {
153 my $name = shift(@_);
89c3975a
RGS
154 if (substr($name, 0, 1) eq ":") {
155 my $v = substr($name, 1);
7be54ea7
AB
156 if (!exists $feature_bundle{$v}) {
157 unknown_feature_bundle($v);
bc9b29db 158 }
7be54ea7 159 unshift @_, @{$feature_bundle{$v}};
bc9b29db
RH
160 next;
161 }
0d863452 162 if (!exists $feature{$name}) {
b42943c4 163 unknown_feature($name);
0d863452
RH
164 }
165 $^H{$feature{$name}} = 1;
166 }
167}
168
169sub unimport {
170 my $class = shift;
171
172 # A bare C<no feature> should disable *all* features
bc9b29db
RH
173 if (!@_) {
174 delete @^H{ values(%feature) };
175 return;
176 }
177
178 while (@_) {
179 my $name = shift;
89c3975a
RGS
180 if (substr($name, 0, 1) eq ":") {
181 my $v = substr($name, 1);
7be54ea7
AB
182 if (!exists $feature_bundle{$v}) {
183 unknown_feature_bundle($v);
bc9b29db 184 }
7be54ea7 185 unshift @_, @{$feature_bundle{$v}};
bc9b29db
RH
186 next;
187 }
0d863452 188 if (!exists($feature{$name})) {
b42943c4 189 unknown_feature($name);
0d863452
RH
190 }
191 else {
192 delete $^H{$feature{$name}};
193 }
194 }
0d863452
RH
195}
196
b42943c4
RGS
197sub unknown_feature {
198 my $feature = shift;
199 croak(sprintf('Feature "%s" is not supported by Perl %vd',
200 $feature, $^V));
201}
202
203sub unknown_feature_bundle {
204 my $feature = shift;
205 croak(sprintf('Feature bundle "%s" is not supported by Perl %vd',
206 $feature, $^V));
207}
208
209sub croak {
210 require Carp;
211 Carp::croak(@_);
212}
213
0d863452 2141;