[perl #125428] [BUG] Pushed values are not type-cheched properly

2015-06-17 Thread via RT
# New Ticket Created by Andrei Osipov # Please include the string: [perl #125428] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125428 > m: subset Y of Int where 1..10; my Y @x; @x.push: 10; @x[0]++ ; @x.perl.say

Re: The invocation operators .* and .+

2015-06-17 Thread yary
A couple years ago I wrote a little Perl6 in response to a challenge, and it took me a while to figure out BUILD, BUILDALL, and new(). Learning the object model meant reading what was available on the web plus some time on the #perl6 IRC channel. I managed to get it all working properly for my litt

panda install problem

2015-06-17 Thread mt1957
l.s. I am having a problem installing my BSON package with panda locally. It fails when it compiles the files to moarvm using perl6 version 2015.05-186-g15c6fbf built on MoarVM version 2015.05-74-gc14339c. $ panda install . ==> Installing BSON from a local directory '.' ==> Fetching BSON ==>

Re: The invocation operators .* and .+

2015-06-17 Thread Aristotle Pagaltzis
* yary [2015-06-17 17:10]: > Perl6's "TEARDOWN" Sorry for the confusion. It’s not in Perl 6. I invented .teardown for this example because I didn’t want to call it .destroy – that’s all. -- Aristotle Pagaltzis //

Re: [perl #125428] [BUG] Pushed values are not type-cheched properly

2015-06-17 Thread Elizabeth Mattijsen
Fixed with f97f9ad6f0b9c6bf96c6. Tests are still needed. Liz > On 17 Jun 2015, at 03:52, Andrei Osipov (via RT) > wrote: > > # New Ticket Created by Andrei Osipov > # Please include the string: [perl #125428] > # in the subject line of all future correspondence about this

Re: The invocation operators .* and .+

2015-06-17 Thread yary
On Wed, Jun 17, 2015 at 1:29 PM, Aristotle Pagaltzis wrote: > * yary [2015-06-17 17:10]: >> Perl6's "TEARDOWN" > > Sorry for the confusion. It’s not in Perl 6. I invented .teardown for > this example because I didn’t want to call it .destroy – that’s all. That's good to know. I did find DESTROY

[perl #125428] [BUG] Pushed values are not type-cheched properly

2015-06-17 Thread Christian Bartolomaeus via RT
I added a test to S09-typed-arrays/arrays.t with commit https://github.com/perl6/roast/commit/e9694a7ef8. I'm closing this ticket as 'resolved'.

[perl #125431] ^, ^^, $, $$ in the middle of regexes

2015-06-17 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #125431] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125431 > Code: say 'test' ~~ / te $$ st /; Result: Nil Well, sure it is Nil, but the problem i