9/30 Got a function that parses data structures. For debugging and stuff.
How do I find/print the "name" of the data structure?
parseStuff($array_ref, $hash_ref1, $hashref2);
sub parseStuff {
use Data::Dumper;
foreach my $structure(@_) {
print "you're looking at a data structure named [?]\n";
print "and it looks like: " . Dumper($structure) . "\n";
}
}
And then I want it to tell me "array_ref" and spew its contents,
then "hash__ref1", etc., for an arbitrary number of arbitrarily
named data structures.
\_ Without some nasty AST traversal, you really can't. That's why
Data::Dumper has the full call, "Dump", that works like this:
print Data::Dumper->Dump([$array_ref, $hash_ref1, $hashref2],
[qw(array_ref hash_ref1 hashref2)]);
--dbushong
\_ If you just want a quick hack, the C preprocessor works pretty
well:
use Filter::cpp;
use Data::Dumper;
#define DEBUG(x) print q{x}, ": ", Dumper(x)
DEBUG($foo);
If you want something more general, yeah, you're pretty much
stuck using Filter::Simple and doing your own parsing. --mconst |