Skip to content

Commit 887ac58

Browse files
committed
Only check for die/warn once
1 parent d1d6429 commit 887ac58

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lib/Perl/Critic/Policy/ErrorHandling/RequireCarping.pm

+9-3
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,19 @@ sub violates {
3131

3232
my ( $self, $elem, undef ) = @_;
3333

34-
return if ($elem ne 'warn' && $elem ne 'die');
34+
if ( $elem eq 'warn' ) {
35+
$alternative = 'carp';
36+
}
37+
elsif ( $elem eq 'die' ) {
38+
$alternative eq 'croak';
39+
}
40+
else {
41+
return;
42+
}
3543
return if is_method_call($elem);
3644
return if is_hash_key($elem);
3745
return if is_subroutine_name($elem);
3846

39-
# Must be a call to 'die' or 'warn'
40-
my $alternative = $elem eq 'warn' ? 'carp' : 'croak';
4147
my $desc = qq{'$elem' used instead of '$alternative'};
4248
return $self->violation( $desc, $expl, $elem );
4349
}

0 commit comments

Comments
 (0)