[perl #77564] * quantifier after block in regexp executes it infinite amount of times

2015-10-19 Thread Tobias Leich via RT
Patches: https://github.com/perl6/nqp/commit/41ab646099 https://github.com/rakudo/rakudo/commit/de4b2b3a87 Tests: https://github.com/perl6/roast/commit/95ee3272ab Closing ticket.

Re: Coverity Static Analysis For NQP

2015-10-19 Thread Parrot Raiser
Coverity can check the C source code for NQP, but AFAIK doesn't work on code written in NQP. On 10/19/15, Tobias Leich wrote: > "Coverity Scan Static Analysis - Find and fix defects in your Java, > C/C++, C# or JavaScript open source project for free" > > How does that work for code written in N

Re: Coverity Static Analysis For NQP

2015-10-19 Thread Tobias Leich
"Coverity Scan Static Analysis - Find and fix defects in your Java, C/C++, C# or JavaScript open source project for free" How does that work for code written in NQP? Cheers, Tobias Am 17.10.2015 um 00:38 schrieb Jeffrey Ryan Thalhammer: > Hello everyone- > > I'm a longtime Perl5 developer and th

[perl #126394] [BUG] Assigning Failure to typed variable swallows Failure information

2015-10-19 Thread Larry Wall via RT
On Mon Oct 19 07:02:44 2015, elizabeth wrote: > Fixed with a31cc91a0d604a8a74529 . Tests are still needed > > > On 19 Oct 2015, at 03:42, Carsten Hartenfels (via RT) > follo...@perl.org> wrote: > > > > # New Ticket Created by Carsten Hartenfels > > # Please include the string: [perl #126394]

Re: [perl #126394] [BUG] Assigning Failure to typed variable swallows Failure information

2015-10-19 Thread Elizabeth Mattijsen
Fixed with a31cc91a0d604a8a74529 . Tests are still needed > On 19 Oct 2015, at 03:42, Carsten Hartenfels (via RT) > wrote: > > # New Ticket Created by Carsten Hartenfels > # Please include the string: [perl #126394] > # in the subject line of all future correspondence about this issue. >

[perl #126391] [BUG] Bad "divide by 0" error message

2015-10-19 Thread via RT
# New Ticket Created by curtis_ovid_...@yahoo.com # Please include the string: [perl #126391] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126391 > $ perl6 -e 'say 42/(.1+.2-.3)'Attempt to divide 420 by zero using div  in b

[perl #126390] [BUG] await start {} hangs when using HTTP::UserAgent

2015-10-19 Thread via RT
# New Ticket Created by curtis_ovid_...@yahoo.com # Please include the string: [perl #126390] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126390 > I was trying to write up a new concurrency examples for a talk when I encou

[perl #126394] [BUG] Assigning Failure to typed variable swallows Failure information

2015-10-19 Thread via RT
# New Ticket Created by Carsten Hartenfels # Please include the string: [perl #126394] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126394 > This bug is for Rakudo version 2015.09-419-gfae01fb built on MoarVM version 2015.09

[perl #126395] [BUG] hang when binding element of bound array

2015-10-19 Thread via RT
# New Ticket Created by Ben Noordhuis # Please include the string: [perl #126395] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126395 > $ perl6 --version This is perl6 version 2015.09-419-gfae01fb built on MoarVM version 201

Coverity Static Analysis For NQP

2015-10-19 Thread Jeffrey Ryan Thalhammer
Hello everyone- I'm a longtime Perl5 developer and the creator of Perl::Critic. More recently, I started working for Coverity, which makes commercial static analysis tools. Coverity offers a free analysis service through scan.coverity.com. This service is used by thousands of open source projects

[perl #68024] [TODO] Make &infix:($op) work

2015-10-19 Thread Tobias Leich via RT
The design docs indicate that square brackets need to be used, which works with rakudo: constant $foo="+"; say &infix:[$foo](3, 4) rakudo-moar 4b1df7: OUTPUT«7␤» So, this is closable with test?

[perl #126385] initial stray space not accepted in :(...)

2015-10-19 Thread Tobias Leich via RT
Patch: https://github.com/rakudo/rakudo/commit/4b1df7b018 Tests: https://github.com/perl6/roast/commit/0478776107 Closing ticket.

[perl #126172] [BUG] .push does something un(ex)-spec'd-ed

2015-10-19 Thread Tobias Leich via RT
Added test: https://github.com/perl6/roast/commit/f50149e607 Closing ticket.

[perl #126172] [BUG] .push does something un(ex)-spec'd-ed

2015-10-19 Thread Tobias Leich via RT
The semantics of push got revised in the meantime, and a new method called "append" got added: m: my @a = 1,2,3; my @b; @b.push: @a,; dd @b rakudo-moar fae01f: OUTPUT«Array @b = [[1, 2, 3],]␤» m: my @a = 1,2,3; my @b; @b.push: @a; dd @b rakudo-moar fae01f: OUTPUT«Array @b = [[1, 2, 3],]␤» m: my