I took a look at the code, and added
print "*** ($capsule) *** Result: ($result)\n";
to the code. When I ran the code, I got
# capsule overload eval-ing : ${$_[0]} eq $_[1]
# capsule overload returning: 1
*** (It's a widget!) *** Result: ()
# result of comparison: false
which seems to mean that the
eq has failed. However, when I replace
eq with
=~, the code appears to work as you expected; however, then it appears to bypass the
nomethod overload.
*** (It's a widget!) *** Result: (1)
# result of comparison: true
# result of comparison: false
Likewise with substituting !~ for ne.
Wish I could be of more help,
-v
-
Update 1:
-
It appears as if nomethod fails to return anything even when hardcoded. I probably need to do more research.
-v
-
Update 2:
-
It looks like Capsule is looking for a nomethod in Widget, but failing to find that, invokes Capsule's nomethod. However, it appears to toss the value in what looks like a return through Widget. It should probably be run through the perl debugger will full tracing.
Sorry again,
-v
"Perl. There is no substitute."
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.