Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Importing functions into packages - globs vs use

by themage (Friar)
on Nov 30, 2006 at 16:42 UTC ( [id://586997]=note: print w/replies, xml ) Need Help??


in reply to Importing functions into packages - globs vs use

hi throop,

The author is doing exactly the oposite to what you are expecting.

What that code do is redefine the sub TRACE in Module::Dependency::Grapher with the one in your local scope. After this code, every call made to TRACE inside Module::Dependency::Grapher will call your local TRACE, not the original one defined in Module::Dependency::Grapher.

Using use Module::Dependency::Grapher qw(TRACE); you import Module::Dependency::Grapher::TRACE to your local scope, that can then be called with TRACE(...).

TheMage
Talking Web

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (6)
As of 2024-03-29 00:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found