Add a reference to the docs for state() variables in feature.pm
[p5sagit/p5-mst-13.2.git] / lib / feature.pm
CommitLineData
0d863452 1package feature;
2
712d05cf 3our $VERSION = '1.01';
0d863452 4
5# (feature name) => (internal name, used in %^H)
6my %feature = (
7b9ef140 7 switch => 'feature_switch',
8 "~~" => "feature_~~",
9 say => "feature_say",
bc9b29db 10 err => "feature_err",
c0cd9745 11 dor => "feature_err",
712d05cf 12 state => "feature_state",
bc9b29db 13);
14
15my %feature_bundle = (
712d05cf 16 "5.10" => [qw(switch ~~ say err state)],
0d863452 17);
18
19
20# Here are some notes that probably shouldn't be in the public
21# documentation, but which it's useful to have somewhere.
22#
23# One side-effect of the change is that C<prototype("CORE::continue")>
24# no longer throws the error C<Can't find an opnumber for "continue">.
25# One of the tests in t/op/cproto.t had to be changed to accommodate
26# this, but it really shouldn't affect real-world code.
27#
28# TODO:
29# - sort out the smartmatch semantics
30# - think about versioned features (use switch => 2)
31#
32# -- Robin 2005-12
33
34=head1 NAME
35
36feature - Perl pragma to enable new syntactic features
37
38=head1 SYNOPSIS
39
bc9b29db 40 use feature qw(switch say);
0d863452 41 given ($foo) {
bc9b29db 42 when (1) { say "\$foo == 1" }
43 when ([2,3]) { say "\$foo == 2 || \$foo == 3" }
44 when (/^a[bc]d$/) { say "\$foo eq 'abd' || \$foo eq 'acd'" }
45 when ($_ > 100) { say "\$foo > 100" }
46 default { say "None of the above" }
0d863452 47 }
48
49=head1 DESCRIPTION
50
51It is usually impossible to add new syntax to Perl without breaking
52some existing programs. This pragma provides a way to minimize that
53risk. New syntactic constructs can be enabled by C<use feature 'foo'>,
54and will be parsed only when the appropriate feature pragma is in
55scope.
56
57=head2 The 'switch' feature
58
59C<use feature 'switch'> tells the compiler to enable the Perl 6
60given/when construct from here to the end of the enclosing BLOCK.
61
62See L<perlsyn/"Switch statements"> for details.
63
64=head2 The '~~' feature
65
66C<use feature '~~'> tells the compiler to enable the Perl 6
67smart match C<~~> operator from here to the end of the enclosing BLOCK.
68
69See L<perlsyn/"Smart Matching in Detail"> for details.
70
71=head2 The 'say' feature
72
73C<use feature 'say'> tells the compiler to enable the Perl 6
74C<say> function from here to the end of the enclosing BLOCK.
75
76See L<perlfunc/say> for details.
77
bc9b29db 78=head2 the 'err' feature
79
80C<use feature 'err'> tells the compiler to enable the C<err>
81operator from here to the end of the enclosing BLOCK.
82
83C<err> is a low-precedence variant of the C<//> operator:
84see C<perlop> for details.
85
c0cd9745 86=head2 the 'dor' feature
87
88The 'dor' feature is an alias for the 'err' feature.
89
712d05cf 90=head2 the 'state' feature
91
92C<use feature 'state'> tells the compiler to enable C<state>
93variables from here to the end of the enclosing BLOCK.
94
e60bcc8b 95See L<perlsub/"Persistent Private Variables"> for details.
96
bc9b29db 97=head1 FEATURE BUNDLES
98
99It's possible to load a whole slew of features in one go, using
100a I<feature bundle>. The name of a feature bundle is prefixed with
101a colon, to distinguish it from an actual feature. At present, the
102only feature bundle is C<use feature ":5.10">, which is equivalent
712d05cf 103to C<use feature qw(switch ~~ say err state)>.
bc9b29db 104
0d863452 105=cut
106
107sub import {
0d863452 108 my $class = shift;
109 if (@_ == 0) {
0d863452 110 croak("No features specified");
111 }
112 while (@_) {
113 my $name = shift(@_);
bc9b29db 114 if ($name =~ /^:(.*)/) {
115 if (!exists $feature_bundle{$1}) {
b42943c4 116 unknown_feature_bundle($1);
bc9b29db 117 }
118 unshift @_, @{$feature_bundle{$1}};
119 next;
120 }
0d863452 121 if (!exists $feature{$name}) {
b42943c4 122 unknown_feature($name);
0d863452 123 }
124 $^H{$feature{$name}} = 1;
125 }
126}
127
128sub unimport {
129 my $class = shift;
130
131 # A bare C<no feature> should disable *all* features
bc9b29db 132 if (!@_) {
133 delete @^H{ values(%feature) };
134 return;
135 }
136
137 while (@_) {
138 my $name = shift;
139 if ($name =~ /^:(.*)/) {
140 if (!exists $feature_bundle{$1}) {
b42943c4 141 unknown_feature_bundle($1);
bc9b29db 142 }
143 unshift @_, @{$feature_bundle{$1}};
144 next;
145 }
0d863452 146 if (!exists($feature{$name})) {
b42943c4 147 unknown_feature($name);
0d863452 148 }
149 else {
150 delete $^H{$feature{$name}};
151 }
152 }
0d863452 153}
154
b42943c4 155sub unknown_feature {
156 my $feature = shift;
157 croak(sprintf('Feature "%s" is not supported by Perl %vd',
158 $feature, $^V));
159}
160
161sub unknown_feature_bundle {
162 my $feature = shift;
163 croak(sprintf('Feature bundle "%s" is not supported by Perl %vd',
164 $feature, $^V));
165}
166
167sub croak {
168 require Carp;
169 Carp::croak(@_);
170}
171
0d863452 1721;