[perl #126802] Shaped arrays with fractional sizes (my @a[0.5])

2015-12-03 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126802] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126802 > My previous bug report was about overflow associated with negative sizes (RT #126800)

[perl #126800] Shaped arrays with negative sizes (my @a[-9999999999999999])

2015-12-03 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126800] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126800 > Code for 32-bit system: my @a[-]; say +@a Result: - W

[perl #126799] Reversing, rotating, sorting fixed-dimension arrays

2015-12-03 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126799] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126799 > Code: my @a[3]; say @a.reverse Result: Cannot reverse a fixed-dimension array in blo

[perl #126789] A caught exception still exits a sub ?

2015-12-03 Thread Larry Wall via RT
The default of die is to, er, die. You can resume after a die, but only if you do so explicitly, in which case you are responsible for overriding the expectations of whoever wrote the die and likely did not expect it to return. > p6 'sub a($a) { $a(); CATCH { default { say "default"; .resume }

[perl #126797] [BUG] rakudo / mingw / gmake test - all nativecall tests fail because of bad $*VM.config

2015-12-03 Thread via RT
# New Ticket Created by Ron Schmidt # Please include the string: [perl #126797] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126797 > With my latest patches I can now build rakudo on mingw. If I run "gmake test" nearly all

[perl #125400] Fwd: problem pushing pairs onto an array of pairs

2015-12-03 Thread jn...@jnthn.net via RT
On Mon Jun 15 06:12:13 2015, mt1...@gmail.com wrote: > On 06/13/2015 04:06 PM, Elizabeth Mattijsen (via RT) wrote: > > Hi, > May I react on this? Would it be easier to have perl6 throw an error > when there is a named parameter in the call while it isn't defined in > the method. Something like

[perl #126793] Case insensitive comparison

2015-12-03 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126793] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126793 > There are still some instances where we use "lc" instead of "fc" to do a case insensitive

[perl #126771] internal error with m:i:m

2015-12-03 Thread Larry Wall via RT
fix in MoarVM, 6da907f72a8a0015f4631b7d11a20fc428e9aad4 test in 0d2a5c01972d11c0a35573e8362c040bf974cde3

[perl #126792] default parameter type check should be compile time when possible

2015-12-03 Thread via RT
# New Ticket Created by Stephane Payrard # Please include the string: [perl #126792] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126792 > According to the test below it seems to be runtime because the error appears after t