[perl #127303] multi required by role doesn't work with .^mixin

2016-01-17 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #127303] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127303 > role multirequire { multi method runtime($var) {...} } class Foo { multi

Re: [perl #127302] AutoReply: [precomp] Missing serialize REPR function for REPR MVMContext

2016-01-17 Thread Lloyd Fournier
Perhaps relevant irc: http://irclog.perlgeek.de/moarvm/2015-12-04 On Mon, Jan 18, 2016 at 1:56 PM Lloyd Fournier wrote: > Or even: > # Foo.pm > BEGIN > $*REPO.need(CompUnit::DependencySpecification.new(:short-name('Test'))); > > perl6 -Ilib -e 'use Foo'; > ===SORRY!=== >

[perl #127304] NYI: visibility of anon scoped sub inside itself

2016-01-17 Thread Brian S. Julin
# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #127304] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127304 > Known NYI, filing to give it a ticket number. "anon" scoped subs should be visible

[perl #127305] EXPORT ignored when unit module/package is used

2016-01-17 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #127305] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127305 > # https://gist.github.com/b0d44595e0d3b314a09d # Module.pm6 unit module Module;

Re: Is there another way to define a regex?

2016-01-17 Thread Tom Browder
On Sun, Jan 17, 2016 at 2:10 PM, Tom Browder wrote: > On Sun, Jan 17, 2016 at 1:55 PM, Bruce Gray wrote: >> On Jan 17, 2016, at 11:07 AM, Tom Browder wrote: >> >>> I'm trying to write all new Perl code in Perl 6. One thing I

Re: Is there another way to define a regex?

2016-01-17 Thread Tom Browder
On Sun, Jan 17, 2016 at 1:55 PM, Bruce Gray wrote: > On Jan 17, 2016, at 11:07 AM, Tom Browder wrote: > >> I'm trying to write all new Perl code in Perl 6. One thing I need is >> the equivalent of the Perl 5 qr// and, following Perl 6 docs, I've ...

Re: Is there another way to define a regex?

2016-01-17 Thread Bruce Gray
On Jan 17, 2016, at 11:07 AM, Tom Browder wrote: > I'm trying to write all new Perl code in Perl 6. One thing I need is > the equivalent of the Perl 5 qr// and, following Perl 6 docs, I've > come to use something like this (I'm trying to ignore certain > directories): >

Re: Is there another way to define a regex?

2016-01-17 Thread Moritz Lenz
On 01/17/2016 06:07 PM, Tom Browder wrote: > I'm trying to write all new Perl code in Perl 6. One thing I need is > the equivalent of the Perl 5 qr// and, following Perl 6 docs, I've > come to use something like this (I'm trying to ignore certain > directories): > > # regex of dirs to ignore >

Re: Is there another way to define a regex?

2016-01-17 Thread Tom Browder
On Sun, Jan 17, 2016 at 3:03 PM, Moritz Lenz wrote: > On 01/17/2016 06:07 PM, Tom Browder wrote: ... >> # regex of dirs to ignore >> my regex dirs { >> \/home\/user\/\.cpan | >> \/home\/tbrowde\/\.emacs >> } > > Better written as > > my regex dirs { >|

[perl #127302] [precomp] Missing serialize REPR function for REPR MVMContext

2016-01-17 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #127302] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127302 > # Foo.pm use Test; BEGIN { my $whatever = $*REPO } ===SORRY!=== Missing serialize REPR

Re: [perl #127302] AutoReply: [precomp] Missing serialize REPR function for REPR MVMContext

2016-01-17 Thread Lloyd Fournier
Or even: # Foo.pm BEGIN $*REPO.need(CompUnit::DependencySpecification.new(:short-name('Test'))); perl6 -Ilib -e 'use Foo'; ===SORRY!=== Missing serialize REPR function for REPR MVMContext On Mon, Jan 18, 2016 at 1:44 PM perl6 via RT wrote: > Greetings, > > This

[perl #127282] [LTA] backtraces could print all the arguments to all the routines

2016-01-17 Thread jn...@jnthn.net via RT
On Fri Jan 15 11:56:17 2016, alex.jakime...@gmail.com wrote: > This bug report is a continuation of > https://rt.perl.org/Ticket/Display.html?id=127281 > > > while we're at it, let's make backtraces print all the arguments > to all the routines... > well, the short ones, anyway > > > That

Is there another way to define a regex?

2016-01-17 Thread Tom Browder
I'm trying to write all new Perl code in Perl 6. One thing I need is the equivalent of the Perl 5 qr// and, following Perl 6 docs, I've come to use something like this (I'm trying to ignore certain directories): # regex of dirs to ignore my regex dirs { \/home\/user\/\.cpan |