[perl #125182] bufs need .push

2015-05-29 Thread Rob Hoelz via RT
On Fri May 29 06:23:54 2015, r...@hoelz.ro wrote: > On Fri May 29 05:54:10 2015, r...@hoelz.ro wrote: > > On Wed May 13 16:38:02 2015, rjbs wrote: > > > A buf is supposed to be mutable, but I can't push to it. TimToday++ > > > said this > > > was incorrect behavior and just NYI. > > > > > > ~$ pe

[perl #125280] add tests for rename()

2015-05-29 Thread via RT
# New Ticket Created by Justin DeVuyst # Please include the string: [perl #125280] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125280 > Roast seems to be somehow lacking such.

[perl #125279] [PATCH] Fix typo in IO::Path.rename which caused bogus "Cannot find method 'postcircumfix:<( )>'"

2015-05-29 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #125279] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125279 > >From 0982b07b9f44df098aefa7c51948dfbb8037cae4 Mon Sep 17 00:00:00 2001 From: smls Date: Fri,

Re: [perl #125271] surprised by "{","}" in the same list

2015-05-29 Thread Timo Paulssen
On 05/29/2015 12:08 AM, Kang-min Liu (via RT) wrote: > # New Ticket Created by Kang-min Liu > # Please include the string: [perl #125271] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=125271 > > > > When there are a pair of

[perl #125278] Adding 'is cached' to a multi candidate causes an LTA error message

2015-05-29 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125278] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125278 > The attached file contains the following code: > multi fib(0) { 0 } > multi fib(1) { 1 } >

[perl #125277] LTA error message when using the wrong sigil with an @array or %hash

2015-05-29 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125277] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125277 > For example: > my @array = 1, 2, 3; > my %hash = :foo(1), :bar(2); > > say $array[0]; # Va

[perl #125182] bufs need .push

2015-05-29 Thread Rob Hoelz via RT
On Fri May 29 05:54:10 2015, r...@hoelz.ro wrote: > On Wed May 13 16:38:02 2015, rjbs wrote: > > A buf is supposed to be mutable, but I can't push to it. TimToday++ > > said this > > was incorrect behavior and just NYI. > > > > ~$ perl6 -e 'my $b = Buf.new(1,2,3); $b.push(4)' > > Cannot call push

[perl #125182] bufs need .push

2015-05-29 Thread Rob Hoelz via RT
On Wed May 13 16:38:02 2015, rjbs wrote: > A buf is supposed to be mutable, but I can't push to it. TimToday++ > said this > was incorrect behavior and just NYI. > > ~$ perl6 -e 'my $b = Buf.new(1,2,3); $b.push(4)' > Cannot call push(Buf: Int); none of these signatures match: > (Any:U \SELF:

Re: [perl #125257] "await" without args does nothing but produces no error

2015-05-29 Thread Elizabeth Mattijsen
That is correct. At the moment we cannot catch this elegantly at compile time, because the candidate with the slurpy takes the no arg case as well. So the only way to catch the no arg case, is to create a candidate for it that dies. Which makes it runtime. Since await, from the grammar point