Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

What is it adding to my symbol table?

by CharlesClarkson (Curate)
on Feb 04, 2002 at 01:42 UTC ( [id://143141]=CUFP: print w/replies, xml ) Need Help??

I was curious about how well behaved my new classes were and wrote this to find what new symbols were being added to the symbol table.

Just change 'use Posix' to whatever module you would like to check.

Update:Changed the first comment to show the modules in my example are all optional.

#!/usr/bin/perl use strict; use warnings; # Load any modules you don't want tested before the BEGIN # You don't have to load the modules above - just any # you want to load and exclude before the tested module(s) BEGIN { my %before; @before{keys %::} = (1) x keys %::; $before{DATA} = 1; sub before { $before{$_[0]} } } # Put the module(s) you're testing here. use POSIX; for ( sort keys %:: ) { printf "% 25s => %s\n", $_, $::{$_} unless before $_; } __END__

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://143141]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-24 08:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found