Skip Menu |

This queue is for tickets about the indirect CPAN distribution.

Report information
The Basics
Id: 83839
Status: resolved
Priority: 0/
Queue: indirect

People
Owner: Nobody in particular
Requestors: SKAUFMAN [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.29
Fixed in: 0.30



Subject: false positive using ? : syntax
skaufman@SamKs-MacBook-Pro:~ $ perl -v | grep This This is perl 5, version 16, subversion 1 (v5.16.1) built for darwin-2level skaufman@SamKs-MacBook-Pro:~ $ cat test.pl use strict; use warnings; no indirect; sub recursive_is_active { my $self = shift; return $self->can('parent_budget') ? ( $self->is_active && $self->parent_budget->is_active ) : $self->is_active; } skaufman@SamKs-MacBook-Pro:~ $ perl test.pl Indirect call of method "is_active" on object "$self" at test.pl line 8. skaufman@SamKs-MacBook-Pro:~ $ perl -Mindirect -e 'print indirect->VERSION' 0.29skaufman@SamKs-MacBook-Pro:~ $
Subject: [rt.cpan.org #83839] Duplicate of #83806
Date: Mon, 18 Mar 2013 00:40:27 +0100
To: bug-indirect [...] rt.cpan.org
From: ilmari [...] ilmari.org (Dagfinn Ilmari Mannsåker)
This ticket is a duplicate of <https://rt.cpan.org/Public/Bug/Display.html?id=83806>, the patch attached there fixes this case too. -- "I use RMS as a guide in the same way that a boat captain would use a lighthouse. It's good to know where it is, but you generally don't want to find yourself in the same spot." - Tollef Fog Heen
Le Dim 17 Mar 2013 19:40:47, ilmari@ilmari.org a écrit : Show quoted text
> This ticket is a duplicate of > <https://rt.cpan.org/Public/Bug/Display.html?id=83806>, > the patch attached there fixes this case too. >
Thanks for the report. This ticket is not really a duplicate of 83806, because the issue reported here is way more serious than just not being friendly with Devel::Declare. Anyway, even if I don't understand why the patch for 83806 fixes the issue, it was applied to version 0.30. Vincent