Skip Menu |

This queue is for tickets about the Hook-LexWrap CPAN distribution.

Report information
The Basics
Id: 103186
Status: resolved
Priority: 0/
Queue: Hook-LexWrap

People
Owner: ether [...] cpan.org
Requestors: maximlubyanov [...] yandex.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.26



Subject: Hook::LexWrap - Incomplete caller override; @DB::args were not set
Date: Mon, 30 Mar 2015 00:58:48 +0300
To: bug-Hook-LexWrap [...] rt.cpan.org
From: Максим Лубянов <maximlubyanov [...] yandex.ru>
Carp think it's being overridden incompletely http://www.perlmonks.org/?node_id=953409 Carp can't detect subroutine's args on __DIE__ this patch Improve it 17c17,20 < my @caller = CORE::caller($i++) or return; --- Show quoted text
> my @caller = CORE::caller() eq 'DB' > ? do { package DB; CORE::caller($i++) } > : CORE::caller($i++) > or return;
On 2015-03-29 14:59:02, maximlubyanov@yandex.ru wrote: Show quoted text
> Carp think it's being overridden incompletely > > http://www.perlmonks.org/?node_id=953409 > > Carp can't detect subroutine's args on __DIE__ > this patch Improve it > > 17c17,20 > < my @caller = CORE::caller($i++) or return; > ---
> > my @caller = CORE::caller() eq 'DB' > > ? do { package DB; CORE::caller($i++) } > > : CORE::caller($i++) > > or return;
>
Thanks, this patch is released in version 0.26!