On Sep 27, 2006, at 10:39 AM, Jay Strauss wrote:
If from within my package that use'd Inline. How do I dump it? I've
tried doing
print Dumper @INLINES;
print Dumper @Java::INLINES;
print Dumper @Inline::Java::INLINES;
It's a lexical variable, so you can't see it from outside the scope
it's declared in. You'd have to edit the Inline/Java.pm file (or use
something like PadWalker) to access it.
Maybe you could try
print Dumper $YourPackage::INLINE;
and see what that shows. Not sure whether it's relevant or not, it's
some specific entry from @INLINES.
-Ken