Re: [perl #126883] LTA error message mentions parameter "$slip" (1.map: { Slip })

2015-12-11 Thread Lloyd Fournier
yep by Slip type I meant a Slip type object ie undefined Slip (as opposed to a Slip instance). I don't really understand why it should be an error or warning. 1.map: { Any } # ((Any)) 1.map: { Slip } # shouldn't this be ((Slip)), What's wrong with this? On Sat, Dec 12, 2015 at 4:00 PM Brandon

Re: [perl #126883] LTA error message mentions parameter "$slip" (1.map: { Slip })

2015-12-11 Thread Brandon Allbery
On Fri, Dec 11, 2015 at 11:55 PM, Lloyd Fournier wrote: > I don't think this should be an error. A Slip type is a kinda odd thing to > be mapping but it should work. It's not mapping over Slips in general; it's mapping over an *undefined* Slip. I'd similarly expect some kind of error or at leas

Re: [perl #126883] LTA error message mentions parameter "$slip" (1.map: { Slip })

2015-12-11 Thread Lloyd Fournier
2¢ I don't think this should be an error. A Slip type is a kinda odd thing to be mapping but it should work. quick look: https://github.com/rakudo/rakudo/blob/a61bbddc005d0188e2409a9ef8feee0c9551ab08/src/core/Any-iterable-methods.pm#L121 It just checks whether it's a Slip type but should also be

[perl #126883] LTA error message mentions parameter “$slip” (1.map: { Slip })

2015-12-11 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126883] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126883 > Code: say 1.map: { Slip } Result: Parameter '$slip' requires an instance of type Slip,

[perl #126882] public interface returning internals

2015-12-11 Thread via RT
# New Ticket Created by nadim khemir # Please include the string: [perl #126882] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126882 > ^attributes returns BOOTSTRAPATTR elements which forces one to check if the elements are

[perl #126881] Newline handling is broken on Windows

2015-12-11 Thread via RT
# New Ticket Created by A. Sinan Unur # Please include the string: [perl #126881] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126881 > 64-bit Windows 10.0.10586. 64-bit perl6 on MoarVM built using MS Visual Studio 2013 tool

[perl #125731] ^roles does not always list all of the roles

2015-12-11 Thread jn...@jnthn.net via RT
On Fri Jul 31 13:09:04 2015, alex.jakime...@gmail.com wrote: > Code: > role A { }; > role B does A { }; > B.new.^roles.say; > > Result: > (B) > > As skids points out, the expected result should be "(A) (B)" or "(B::A) > (B)". > We used to, by default, give the non-transitive view of the done ro

[perl #126880] [BUG] no precompilation with compile time warning dies painfully

2015-12-11 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #126880] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126880 > 1. by itself #lib/noprecomp.pm no precompilation; my $_; perl6 -Ilib -e 'need noprecom

[perl #124016] Rakudo inappropriately uses .gist for caching "is cached" sub arguments; needs proper solution

2015-12-11 Thread jn...@jnthn.net via RT
On Sun Mar 08 07:02:33 2015, sml...@gmail.com wrote: > In current Rakudo, the 'is cached' trait for routines compares > incoming argument lists by their .gist representation. This was > probably done as a temporary work-around, and is not a satisfactory > solution because: > > * .gist elides infor

[perl #126878] [BUG] no precompilation doesn't work with prcompilation

2015-12-11 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #126878] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126878 > #lib/precomp.pm need noprecomp; #lib/noprecomp.pm no precompilation; perl6 -Ilib -e 'n