1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
#!perl -T
use strict;
use warnings;
use Test::More tests => 33;
use Scope::Upper qw<unwind SUB>;
my ($res, @res);
# --- Void to void ------------------------------------------------------------
sub {
$res = 1;
unwind(qw<a b c> => SUB);
$res = 0;
}->(0);
ok $res, 'unwind in void context at sub to void';
sub {
$res = 1;
eval {
unwind(qw<d e f> => SUB);
};
$res = 0;
}->(0);
ok $res, 'unwind in void context at sub across eval to void';
sub {
$res = 1;
for (1 .. 5) {
unwind qw<g h i> => SUB;
}
$res = 0;
}->(0);
ok $res, 'unwind in void context at sub across loop to void';
# --- Void to scalar ----------------------------------------------------------
$res = sub {
unwind(qw<a b c> => SUB);
return 'XXX';
}->(0);
is $res, 'c', 'unwind in void context at sub to scalar';
$res = sub {
eval {
unwind qw<d e f> => SUB;
};
return 'XXX';
}->(0);
is $res, 'f', 'unwind in void context at sub across eval to scalar';
$res = sub {
for (1 .. 5) {
unwind qw<g h i> => SUB;
}
}->(0);
is $res, 'i', 'unwind in void context at sub across loop to scalar';
$res = sub {
for (6, unwind qw<j k l> => SUB) {
$res = 'NO';
}
return 'XXX';
}->(0);
is $res, 'l', 'unwind in void context at sub across loop iterator to scalar';
# --- Void to list ------------------------------------------------------------
@res = sub {
unwind qw<a b c> => SUB;
return 'XXX';
}->(0);
is_deeply \@res, [ qw<a b c> ], 'unwind in void context at sub to list';
@res = sub {
eval {
unwind qw<d e f> => SUB;
};
return 'XXX';
}->(0);
is_deeply \@res, [ qw<d e f> ], 'unwind in void context at sub across eval to list';
@res = sub {
for (1 .. 5) {
unwind qw<g h i> => SUB;
}
}->(0);
is_deeply \@res, [ qw<g h i> ], 'unwind in void context at sub across loop to list';
# --- Scalar to void ----------------------------------------------------------
sub {
$res = 1;
my $temp = unwind(qw<a b c> => SUB);
$res = 0;
}->(0);
ok $res, 'unwind in scalar context at sub to void';
sub {
$res = 1;
my $temp = eval {
unwind(qw<d e f> => SUB);
};
$res = 0;
}->(0);
ok $res, 'unwind in scalar context at sub across eval to void';
sub {
$res = 1;
for (1 .. 5) {
my $temp = (unwind qw<g h i> => SUB);
}
$res = 0;
}->(0);
ok $res, 'unwind in scalar context at sub across loop to void';
sub {
$res = 1;
if (unwind qw<m n o> => SUB) {
$res = undef;
}
$res = 0;
}->(0);
ok $res, 'unwind in scalar context at sub across test to void';
# --- Scalar to scalar --------------------------------------------------------
$res = sub {
1, unwind(qw<a b c> => SUB);
}->(0);
is $res, 'c', 'unwind in scalar context at sub to scalar';
$res = sub {
eval {
8, unwind qw<d e f> => SUB;
};
}->(0);
is $res, 'f', 'unwind in scalar context at sub across eval to scalar';
$res = sub {
if (unwind qw<m n o> => SUB) {
return 'XXX';
}
}->(0);
is $res, 'o', 'unwind in scalar context at sub across test to scalar';
# --- Scalar to list ----------------------------------------------------------
@res = sub {
if (unwind qw<m n o> => SUB) {
return 'XXX';
}
}->(0);
is_deeply \@res, [ qw<m n o> ], 'unwind in scalar context at sub across test to list';
# --- List to void ------------------------------------------------------------
sub {
$res = 1;
my @temp = unwind(qw<a b c> => SUB);
$res = 0;
}->(0);
ok $res, 'unwind in list context at sub to void';
sub {
$res = 1;
my @temp = eval {
unwind(qw<d e f> => SUB);
};
$res = 0;
}->(0);
ok $res, 'unwind in list context at sub across eval to void';
sub {
$res = 1;
for (1 .. 5) {
my @temp = (unwind qw<g h i> => SUB);
}
$res = 0;
}->(0);
ok $res, 'unwind in list context at sub across loop to void';
sub {
$res = 1;
for (6, unwind qw<j k l> => SUB) {
$res = undef;
}
$res = 0;
}->(0);
ok $res, 'unwind in list context at sub across test to void';
# --- List to scalar ----------------------------------------------------------
$res = sub {
my @temp = (1, unwind(qw<a b c> => SUB));
return 'XXX';
}->(0);
is $res, 'c', 'unwind in list context at sub to scalar';
$res = sub {
my @temp = eval {
8, unwind qw<d e f> => SUB;
};
return 'XXX';
}->(0);
is $res, 'f', 'unwind in list context at sub across eval to scalar';
$res = sub {
for (1 .. 5) {
my @temp = (7, unwind qw<g h i> => SUB);
}
return 'XXX';
}->(0);
is $res, 'i', 'unwind in list context at sub across loop to scalar';
$res = sub {
for (6, unwind qw<j k l> => SUB) {
return 'XXX';
}
}->(0);
is $res, 'l', 'unwind in list context at sub across loop iterator to scalar';
# --- List to list ------------------------------------------------------------
@res = sub {
2, unwind qw<a b c> => SUB;
}->(0);
is_deeply \@res, [ qw<a b c> ], 'unwind in list context at sub to list';
@res = sub {
eval {
8, unwind qw<d e f> => SUB;
};
}->(0);
is_deeply \@res, [ qw<d e f> ], 'unwind in list context at sub across eval to list';
@res = sub {
for (6, unwind qw<j k l> => SUB) {
return 'XXX';
}
}->(0);
is_deeply \@res, [ qw<j k l> ], 'unwind in list context at sub across loop iterator to list';
# --- Prototypes --------------------------------------------------------------
sub pie { 7, unwind qw<pie good>, $_[0] => SUB }
sub wlist (@) { return @_ }
$res = wlist pie 1;
is $res, 3, 'unwind to list prototype to scalar';
@res = wlist pie 2;
is_deeply \@res, [ qw<pie good 2> ], 'unwind to list prototype to list';
sub wscalar ($$) { return @_ }
$res = wscalar pie(6), pie(7);
is $res, 2, 'unwind to scalar prototype to scalar';
@res = wscalar pie(8), pie(9);
is_deeply \@res, [ 8, 9 ], 'unwind to scalar prototype to list';
|