I'm trying to figure out the extent of of perl's introspective and reflective features. So far, I've only got a few leads from people on #perl, enumerating the symbol table (e.g., to find all the methods in a class/pkg) and autoload. Can one deduce (decompile from bytecode or AST) the texual source of a sub, without using a text file originally containing the code? (which may not exist) Any other interesting code snippits illustrating features along these lines?