Adding parentheses around $$arg[0] fixes that alright, but I don't care.
But you should care. If adding parenthesis helps, it's a parsing problem. Here's what B::Deparse has to say to the code:
sub test_a {
use warnings;
use strict;
my $arg = shift();
ref $arg ? $$arg->test_a([0]) : $arg;
}
sub test_b {
use warnings;
use strict;
my $arg = shift();
ref $arg ? test_a($$arg[0]) : $arg;
}
So the call to test_a inside test_a is parsed as indirect method call syntax. Why? Because it's not predeclared. In Perl 5, a name only becomes visible in the statement after the declaration, which is why you can't write
my $sub = sub { ...; $sub->(); .. };
So, in test_b you call test_a, which has already been declared. So either use parens after the function name, or predeclare it with
sub test_a;
sub test_a { ...; recurse into test_a here };
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|