in reply to Re: How to tell if a variable is blessed ?
in thread How to tell if a variable is blessed ?
You might trigger a die handler, which could be bad. For example, one of Test::More's dependencies has one. See eval-blocks and Test::Builder for more on the topic.eval { local $SIG{__DIE__}; $ref->isa('Some::Package'); }
|
|---|