Re: [Boston.pm] getting values out of symbol tables

2003-01-17 Thread Chris Nandor
At 13:45 -0500 2003.01.17, John Saylor wrote: >I have a project where I am trying to dump all the variable names and >values in a given package namespace. I can get all the variable names >OK, it's just getting the values from those names that I am not able to >do. > >I have some code like this:

Re: [Boston.pm] getting values out of symbol tables

2003-01-17 Thread John Saylor
Hi ( 03.01.17 13:56 -0500 ) Dan Sugalski: > Typeglobs are all that's in symbol tables. You need to look in the > globs if you want to get values. But how do I do this? Do I open () them? Do I dereference them? I've been digging through the camel book [and writing test scripts] without success.

Re: [Boston.pm] getting values out of symbol tables

2003-01-17 Thread Jeremy Muhlich
On Fri, 2003-01-17 at 13:45, John Saylor wrote: > I have a project where I am trying to dump all the variable names and > values in a given package namespace. I can get all the variable names > OK, it's just getting the values from those names that I am not able to > do. Check out the Dumpvalue

Re: [Boston.pm] getting values out of symbol tables

2003-01-17 Thread John West
On Fri, 2003-01-17 at 13:45, John Saylor wrote: > Hi > > I have a project where I am trying to dump all the variable names and > values in a given package namespace. I can get all the variable names > OK, it's just getting the values from those names that I am not able to > do. > > I have some