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
|
use 5.010;
use strict;
use warnings;
use Test::More;
plan tests => 3;
BEGIN{
BAIL_OUT "A bug in Perl 5.20 regex compilation prevents the use of PPR under that release"
if $] > 5.020 && $] < 5.022;
}
use PPR;
sub feature;
feature '(Precheck that "vampire for" is valid)'
=> q{{ for (;;) {} }};
feature 'Octal constants'
=> q{{ my $x = 0o7777; }};
feature 'Try/catch blocks'
=> q{{
try {
do_something_risky();
}
catch ($error) {
do_something_catchy($error);
}
for (;;) {}
}};
done_testing();
sub feature {
state $STATEMENT = qr{ \A (?&PerlBlock) \s* \Z $PPR::GRAMMAR }xms;
my ($desc, $syntax) = @_;
ok $syntax =~ $STATEMENT => $desc;
}
|