X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSafe%2FIsa.pm;h=81d228160089f5d616fe3f7e3b2e35bf3ad28dc4;hb=f3335392f5835f3396cccd906b7716ce02bb06c0;hp=bb0b221c97df46de61a564b51c3594ca8aca5405;hpb=4f598773ef5ca977560c39af7cbf8e7bf590cc77;p=p5sagit%2FSafe-Isa.git diff --git a/lib/Safe/Isa.pm b/lib/Safe/Isa.pm index bb0b221..81d2281 100644 --- a/lib/Safe/Isa.pm +++ b/lib/Safe/Isa.pm @@ -3,14 +3,17 @@ package Safe::Isa; use strict; use warnings FATAL => 'all'; use Scalar::Util qw(blessed); -use base qw(Exporter); +use Exporter 5.57 qw(import); -our $VERSION = '1.000003'; +our $VERSION = '1.000005'; our @EXPORT = qw($_call_if_object $_isa $_can $_does $_DOES); our $_call_if_object = sub { my ($obj, $method) = (shift, shift); + # This is intentionally a truth test, not a defined test, otherwise + # we gratuitously break modules like Scalar::Defer, which would be + # un-perlish. return unless blessed($obj); return $obj->$method(@_); }; @@ -106,7 +109,7 @@ is equivalent to Note that we don't handle trying class names, because many things are valid class names that you might not want to treat as one (like say "Matt") - the C function from L is a good way to check for -somthing you might be able to call methods on if you want to do that. +something you might be able to call methods on if you want to do that. =head1 EXPORTS