Re: unsubsribe

2016-09-14 Thread Shlomi Fish
Hi Rene, for information about how to unsubscribe from perl6-users, please see this page: http://lists.perl.org/list/perl6-users.html sorry to see you go, and good luck in the future! -- Shlomi Fish On Tue, 13 Sep 2016 23:41:17 + (UTC) Rene Bourgoin via perl6-users wrote: > --

[perl #129249] [REGEX] Guts spilled: Cannot find method 'rxtype' on object of type QAST::Op

2016-09-14 Thread jn...@jnthn.net via RT
On Sun Sep 11 10:14:26 2016, c...@zoffix.com wrote: > m: my %what = foo => 42, bar => 43; say 'foo3bar4' ~~ > /$=@(%what.keys) 4/; > rakudo-moar 376b5f: OUTPUT«===SORRY!===␤Cannot find method > 'rxtype' on object of type QAST::Op␤» Turned out to be a mis-construction of the QAST tree, which in

Re: [perl #129263] [CONC] Outer dynamic variable not found in nested `start` block

2016-09-14 Thread Lloyd Fournier
Looks pretty similar to: https://rt.perl.org/Public/Bug/Display.html?id=127033 On Tue, Sep 13, 2016 at 11:13 PM Elizabeth Mattijsen wrote: > Feels to me some kind of loop would need to be made around line 33 in > src/core/stubs.pm, basically looping until we either find the dynamic > variable, o

[perl #129161] [PERF] Rapidly growing RAM usage when interpolating codeblock in regexes

2016-09-14 Thread jn...@jnthn.net via RT
On Thu Sep 01 09:28:21 2016, c...@zoffix.com wrote: > This program starts off at 140MB and rapidly grows to 1.7GB of used > RAM by the 1000th iteration: > > perl6 -e 'for ^1000 { say "Iter $_"; "foo".subst: :g, > /<{"abc".comb.join("\\s")}>/, "" }' > > If the interpolated string is changed to jus

[perl #129270] [BUG] Unicode ellipsis works as a Stub, but still triggers redeclaration errors

2016-09-14 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #129270] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129270 > Works: zoffix@VirtualBox:~$ perl6 -e 'class Foo { ... }; class Foo { }' Redeclaration err

[perl #129271] [REGEX] Captures from interpolated variables do not capture

2016-09-14 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #129271] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129271 > m: my $m = 'a 123' ~~ /(\d\d\d)/; dd [$m.list]; rakudo-moar 2c95f7: OUTPUT«[Match.new(as

Re: [perl #129271] [REGEX] Captures from interpolated variables do not capture

2016-09-14 Thread Patrick R. Michaud
On Wed, Sep 14, 2016 at 05:10:55PM -0700, Zoffix Znet wrote: > m: my $input = '(\d\d\d)'; my $m = 'a 123' ~~ /<$input>/; dd > [$m.list]; > rakudo-moar 2c95f7: OUTPUT«[]␤» > > > Expected results: output is the same, as the $input contains a capture that > should capture stuff when interpolated