Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Don't get too cute about modifying and using @_ in the same line of code

by GlitchMr (Sexton)
on Aug 23, 2012 at 08:53 UTC ( [id://989244]=note: print w/replies, xml ) Need Help??


in reply to Don't get too cute about modifying and using @_ in the same line of code

Doesn't happen for me with following code.

use strict; use warnings; package Package1; use Data::Dumper; sub some_other_method { print Dumper @_; } package Package2; our @ISA = 'Package1'; sub some_other_method { die "Shouldn't be called!"; } sub quick_method { return shift->SUPER::some_other_method(@_); } sub new { bless {}, shift; } Package2->new->quick_method( 1, 2, 3 );

It returns (correctly) following result (I've checked it in Perl v5.8.8, v5.10.1, v5.14.2, v5.16.1 and blead).

$VAR1 = bless( {}, 'Package2' ); $VAR2 = 1; $VAR3 = 2; $VAR4 = 3;

But, I think that so simple code won't show the bug - it happens in more complex cases (the warning you have got is internal Perl warning you should never see, but you saw according to perldiag - this is possibly a Perl bug). If you can, try to make testcase which shows the bug happening (by shortening the program to only have what you need to show bug). Also, there is chance that some XS module breaks something.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://989244]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-04-19 16:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found