Your example works for me too. Sorry. Apparently I took the error out of my code while reducing it to a simpler test case.
My production code still exits with "Not a CODE Reference". I tried debugging it, but I do not understand why it crashes while evaluating the if-expression.
1357==>b if ($self->{TT}->call_category($key) != undef)
1358 {
1359 # Do something, never reached
1360 }
use Data::Dumper;
print Dumper $key
$VAR1 = 'AN-AM-BA';
print Dumper $self->{TT}->call_category
$VAR1 = {
'DU-EX-TA' => 16,
'*-CM-*' => 145,
# Lots more, but not the value of $key.
'*-VY-*' => 132
};
print Dumper $self->{TT}->call_category($key)
$VAR1 = undef;
n
Not a CODE reference at ...
Do you have any pointer what's wrong here?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.