We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1d6429 commit 887ac58Copy full SHA for 887ac58
lib/Perl/Critic/Policy/ErrorHandling/RequireCarping.pm
@@ -31,13 +31,19 @@ sub violates {
31
32
my ( $self, $elem, undef ) = @_;
33
34
- return if ($elem ne 'warn' && $elem ne 'die');
+ if ( $elem eq 'warn' ) {
35
+ $alternative = 'carp';
36
+ }
37
+ elsif ( $elem eq 'die' ) {
38
+ $alternative eq 'croak';
39
40
+ else {
41
+ return;
42
43
return if is_method_call($elem);
44
return if is_hash_key($elem);
45
return if is_subroutine_name($elem);
46
- # Must be a call to 'die' or 'warn'
- my $alternative = $elem eq 'warn' ? 'carp' : 'croak';
47
my $desc = qq{'$elem' used instead of '$alternative'};
48
return $self->violation( $desc, $expl, $elem );
49
}
0 commit comments