Name : perl-Devel-Confess
| |
Version : 0.009004
| Vendor : openSUSE
|
Release : lp151.2.2
| Date : 2018-07-20 11:19:32
|
Group : Development/Libraries/Perl
| Source RPM : perl-Devel-Confess-0.009004-lp151.2.2.src.rpm
|
Size : 0.04 MB
| |
Packager : https://bugs_opensuse_org
| |
Summary : Include stack traces on all warnings and errors
|
Description :
This module is meant as a debugging aid. It can be used to make a script complain loudly with stack backtraces when \'warn()\'ing or \'die()\'ing. Unlike other similar modules (e.g. Carp::Always), stack traces will also be included when exception objects are thrown.
The stack traces are generated using Carp, and will work for all types of errors. Carp\'s \'carp\' and \'croak\' functions will also be made to include stack traces.
$ perl -d:Confess -e \'sub f { die \"arghh\" }; sub g { f }; g\' arghh at -e line 1. main::f() called at -e line 1 main::g() called at -e line 1
$ perl -d:Confess -w -e \'sub f { $a = shift; AATTa = AATT$a };\' \\ -e \'sub g { f(undef) }; g\' Use of uninitialized value $a in array dereference at -e line 1. main::f(undef) called at -e line 2 main::g() called at -e line 2
Internally, this is implemented with $SIG{__WARN__} and $SIG{__DIE__} hooks.
Stack traces are also included if raw non-object references are thrown.
This module is compatible with all perl versions back to 5.6.2, without additional prerequisites. It contains workarounds for a number of bugs in the perl interpreter, some of which effect comparatively simpler modules, like Carp::Always.
|
RPM found in directory: /vol/rzm3/linux-opensuse/ports/armv7hl/distribution/leap/15.1/repo/oss/noarch |