summaryrefslogtreecommitdiff
path: root/lib/B/Deparse.t
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2017-12-05 22:08:42 +0000
committerZefram <zefram@fysh.org>2017-12-05 22:18:28 +0000
commit284a3526271b040abd48aef39f61e8bacbf16645 (patch)
treeab207e7b8634bdba8a3bf6f319fcc1333a9d7f17 /lib/B/Deparse.t
parent8c49c7c16863f886a6a4da3b585463cd16a8b976 (diff)
downloadperl-284a3526271b040abd48aef39f61e8bacbf16645.tar.gz
change "when" keyword to "whereso"
Diffstat (limited to 'lib/B/Deparse.t')
-rw-r--r--lib/B/Deparse.t22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/B/Deparse.t b/lib/B/Deparse.t
index 156898652c..b8d98caefc 100644
--- a/lib/B/Deparse.t
+++ b/lib/B/Deparse.t
@@ -1023,12 +1023,12 @@ my $b = \{};
my $c = [];
my $d = \[];
####
-# SKIP ?$] < 5.010 && "smartmatch and given/when not implemented on this Perl version"
+# SKIP ?$] < 5.010 && "smartmatch and given/whereso not implemented on this Perl version"
# CONTEXT use feature ':5.10'; no warnings 'experimental::smartmatch';
-# implicit smartmatch in given/when
+# implicit smartmatch in given/whereso
given ('foo') {
- when ('bar') { continue; }
- when ($_ ~~ 'quux') { continue; }
+ whereso ('bar') { continue; }
+ whereso ($_ ~~ 'quux') { continue; }
0;
}
####
@@ -1511,7 +1511,7 @@ $a[0] = 1;
CORE::state $x;
CORE::say $x;
CORE::given ($x) {
- CORE::when (3) {
+ CORE::whereso (3) {
continue;
}
next;
@@ -1527,7 +1527,7 @@ use 1;
CORE::say $_;
CORE::state $x;
CORE::given ($x) {
- CORE::when (3) {
+ CORE::whereso (3) {
continue;
}
next;
@@ -1538,7 +1538,7 @@ CORE::evalbytes '';
CORE::say $_;
CORE::state $x;
CORE::given ($x) {
- CORE::when (3) {
+ CORE::whereso (3) {
continue;
}
next;
@@ -1554,7 +1554,7 @@ use 1;
CORE::say $_;
CORE::state $x;
CORE::given ($x) {
- CORE::when (3) {
+ CORE::whereso (3) {
continue;
}
next;
@@ -1567,7 +1567,7 @@ use feature ':default';
CORE::say $_;
CORE::state $x;
CORE::given ($x) {
- CORE::when (3) {
+ CORE::whereso (3) {
continue;
}
next;
@@ -1598,7 +1598,7 @@ my sub tr;
my sub unless;
my sub until;
my sub use;
-my sub when;
+my sub whereso;
my sub while;
CORE::if ($1) { die; }
CORE::if ($1) { die; }
@@ -1621,7 +1621,7 @@ CORE::unless ($1) { die; }
CORE::until ($1) { die; }
die CORE::until $1;
CORE::use strict;
-CORE::when ($1 ~~ $2) { die; }
+CORE::whereso ($1 ~~ $2) { die; }
CORE::while ($1) { die; }
die CORE::while $1;
####