Re: Namespace roundup

2006-04-16 Thread Chip Salzenberg
This is an old message I'm replying to, so I'll copy most of it. On Fri, Mar 10, 2006 at 07:05:34PM +0100, Leopold Toetsch wrote: >Code snippet # NameSpace::name > > .sub main # '' actually parrot [1] > store_global 'x', $P0#

Re: Namespace roundup

2006-03-10 Thread Leopold Toetsch
On Mar 10, 2006, at 23:09, Roger Browne wrote: Will there be a way to get back into the default top-level namespace? e.g.: .HLL "" or .HLL "parrot" My Amber compiler is currently adding a few extra subs to some of the standard parrot PMCs, and I won't be able to do this if I'm in the

Re: Namespace roundup

2006-03-10 Thread Roger Browne
Leopold Toetsch wrote: > .HLL "perl5"," # new top-level namespace > .sub 'x' # perl5::x Will there be a way to get back into the default top-level namespace? e.g.: .HLL "" or .HLL "parrot" My Amber compiler is currently adding a few extra su

Namespace roundup

2006-03-10 Thread Leopold Toetsch
I've implemented a fair amount of pdd21, mostly the invisible internals part currently. Before I start with the final changes (and possibly start breaking existing code), I'd like to summarize the planned behavior. Code snippet # NameSpace::name .sub main