[perl #124220] Grammar waterbed-style issue

2015-03-31 Thread via RT
# New Ticket Created by # Please include the string: [perl #124220] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=124220 > OS: Ubuntu 14.04 LTS on VirtualBox Host OS: Windows 8 Rakudo version: Current as of 25/03/2015 This

[perl #123115] [BUG] ?? !! report LTA confusion when listop gobbles the !! in Rakudo

2015-03-31 Thread Christian Bartolomaeus via RT
This fails now with a typed exception and a fitting error message: $ perl6 -e 'sub foo { 2 }; say 1 ?? foo !! 3' ===SORRY!=== Error while compiling -e Your !! was gobbled by the expression in the middle; please parenthesize at -e:1 --> sub foo { 2 }; say 1 ?? foo !!⏏ 3 expecting any of:

[perl #124219] Potential missing error text

2015-03-31 Thread via RT
# New Ticket Created by # Please include the string: [perl #124219] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=124219 > OS: Ubuntu Linux 14.04 LTS in VirtualBox Host: Windows 8 Rakudo version: git pull from 25/3/2015 Iss

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Darren Duncan
I for one did not know/remember about PERL6LIB and rather all I knew was the more ambitious plan at http://design.perl6.org/S11.html about CompUnitRepo and such. -- Darren Duncan

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Fields, Christopher J
On Mar 31, 2015, at 6:28 AM, Paul Cochrane wrote: > > On Tue, Mar 31, 2015 at 05:40:44AM -0500, Tom Browder wrote: >> On Mon, Mar 30, 2015 at 7:35 PM, Rob Hoelz wrote: >>> Yup, PERL6LIB. =) >> >> And how did you find out about it, i.e., where is it documented? > > http://doc.perl6.org/language

[perl #124214] Inconsistency between NULL CPointer behavior jvm vs moar

2015-03-31 Thread Brian S. Julin
# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #124214] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=124214 > Pointer-based classes are behaving differently on moar and jvm: (03/30/2015 10:49:07

[perl #124213] [BUG] Bizarre LTA error message when not putting in whitespace between 'is MyBase' and the opening brace '{' in class declaration in Rakudo

2015-03-31 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #124213] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=124213 > m: class T{}; class S is T{} rakudo-moar 2b303a: OUTPUT«===SORRY!===␤Cannot find method

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Paul Cochrane
On Tue, Mar 31, 2015 at 05:40:44AM -0500, Tom Browder wrote: > On Mon, Mar 30, 2015 at 7:35 PM, Rob Hoelz wrote: > > Yup, PERL6LIB. =) > > And how did you find out about it, i.e., where is it documented? http://doc.perl6.org/language/5to6#Environment_variables to be honest I cheated and have wr

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Tom Browder
On Mon, Mar 30, 2015 at 7:35 PM, Rob Hoelz wrote: > Yup, PERL6LIB. =) And how did you find out about it, i.e., where is it documented? Thanks. -Tom

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Carl Mäsak
It's worth noting that PERL6LIB is at most a developer convenience, shouldn't be encouraged or used by module consumers, and will possibly be deprecated in the future. This is because Perl 6 has a slightly more ambitious view of module loading which isn't directly compatible with OS paths. I use P