Re: Re-export symbols

2017-01-10 Thread Lloyd Fournier
Hey Fernando, This is not yet implemented in rakudo. I included a way of doing this in CompUnit::Util . I'm not sure when/if :EXPORT will be implemented (I actually don't think it's a good idea). I've just realised that there is another solut

Re: Re-export symbols

2017-01-10 Thread Fernando Santagata
Thank you that's very interesting. I solved the problem I had, refactoring the modules I was working on: after all I didn't have to ask anyone. Still the problem would bug me. Thanks again! On Tue, Jan 10, 2017 at 12:25 PM, Lloyd Fournier wrote: > Hey Fernando, > > This is not yet implemented

Re-export symbols

2016-12-30 Thread Fernando Santagata
Hello, I have a module that defines some constants and another one that use the first module. I wish to re-export those constants. I read here: http://design.perl6.org/S11.html that this: use FirstModule :EXPORT; should re-export the imported symbols, but it throws an error (no such tag 'EXPO