- New upstream release 1.228 - Fix test reliance on '.' in @INC - Temporary fix to keep an untested combination from blocking Perl::Critic - Keep PPI::Dumper from breaking Perl::Critic under cperl 5.27 - Fix upstream's temporary fix (GH#206, GH#212)epel9
parent
d810043937
commit
79fa9ca6a1
@ -0,0 +1,12 @@
|
||||
--- lib/PPI/Tokenizer.pm
|
||||
+++ lib/PPI/Tokenizer.pm
|
||||
@@ -833,8 +833,7 @@ sub __current_token_is_forced_word {
|
||||
# We also have to make sure that the sub/package/etc doing the forcing
|
||||
# is not a method call.
|
||||
if( $USUALLY_FORCES{$content}) {
|
||||
- return 1 if not defined $word; # TODO this is a quick fix to unblock Perl::Critic users, needs to be verified
|
||||
- return if $word =~ /^v[0-9]+$/ and ( $content eq "use" or $content eq "no" );
|
||||
+ return if defined($word) and $word =~ /^v[0-9]+$/ and ( $content eq "use" or $content eq "no" );
|
||||
return 1 if not $prevprev;
|
||||
return 1 if not $USUALLY_FORCES{$prevprev->content} and $prevprev->content ne '->';
|
||||
return;
|
@ -1 +1 @@
|
||||
SHA512 (PPI-1.224.tar.gz) = 7c5f4a01b3d4a1e7e2f68d7e5c81368387fbe9a4cd2f20afc494706f742c9ba0b293747b692fb77af9a1457e077687c7d5217bf09137ab71bb50ba52da24431c
|
||||
SHA512 (PPI-1.228.tar.gz) = 3fa0aff7921b37f75de6f407d0b4c9b78e4e5670e3537e10b6b6934324deacdf5974bd15dffc8914999a9693bd28ffb24fb217f4f76d5343de26c0160da485fe
|
||||
|
Loading…
Reference in new issue