[perl #127062] [BUG] Useless use of "*" in expression ".price * .quantity" in sink context (2015.12 Regression from 2015.11)

2016-05-08 Thread Christian Bartolomaeus via RT
On Sat May 07 15:26:05 2016, sml...@gmail.com wrote: > No longer an issue with current Rakudo: > > ➜ my @a = -1, 2, -3; say [+] (.abs + .abs for @a) > 12 > > Not sure if a test is needed for this. I'm not really sure, either. But since we have a bunch of tests for cases where we expect

[perl #126494] [BUG] `for lines()` hangs when $*ARGFILES consists of 2 or more files

2016-05-08 Thread Christian Bartolomaeus via RT
There was already a (passing) test for this in S16-filehandles/argfiles.t (added with commit a4721fe09d). I verified that said test hangs with rakudo on commit a4721fe09d. I'm closing this ticket as 'resolved'.

[perl #128098] small problem with diag in Test module

2016-05-08 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #128098] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128098 > Hi, Since I found the Test module in the rakudo project I file the bug here. When the diag()

[perl #127176] [BUG] Duplicate Compilation Errors (suggestive of precompilation done twice)

2016-05-08 Thread Christian Bartolomaeus via RT
On Thu Feb 25 10:58:44 2016, elizabeth wrote: > Fixed with 4f338014ae662c790f964 , tests are still needed Great! I added a test to S10-packages/precompilation.t with commit https://github.com/perl6/roast/commit/d2eb961cec I'm closing this ticket as 'resolved'.

[perl #126127] [LTA] undefined type qualifiers ignored

2016-05-08 Thread Christian Bartolomaeus via RT
There is a test in S06-parameters/smiley.t that the code sub a(Int:foo $a) { $a } fails with X::InvalidTypeSmiley. I'm closing this ticket as 'resolved'.

[perl #128099] $*GROUP turns into IdName after being IdFetch (say $*GROUP; say WHAT $*GROUP)

2016-05-08 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #128099] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128099 > Code: say WHAT $*GROUP; say $*GROUP Result: (IdFetch) alex (1000) ↑ That works! Bu

Re: [perl #128090] [RFC] Easy Way to Export Only Specific Symbols At Compile Time

2016-05-08 Thread Lloyd Fournier
Something like this has also passed through my head. What about use Test :ALL<&is &ok> or use Test :SOME-TAG<&foo &bar>. so you can filter out what you want with arguments to the tag. This seems to be better and more backwards-compy because with current rakudo use Test :ALL<&is &ok> will still wo

[perl #127916] [BUG] Inaccurate assignment to $!shortname in cases where a mixin happens during BUILD time.

2016-05-08 Thread Christian Bartolomaeus via RT
On Sun Apr 24 03:51:25 2016, pesc...@gmail.com wrote: > > Fixed in Rakudo commit 60550d15, test added in roast commit 95a5c18. Great! I'm closing this ticket as 'resolved'.

[perl #125902] [LTA] error message “Type 'Str' is not declared” (my Str where 'foo' $test;)

2016-05-08 Thread Christian Bartolomaeus via RT
As a status update: All code snippet in this ticket die now with X::Syntax::Malformed and complain about 'Malformed my' during compilation (I think, it was fixed with rakudo commit e1e03e6ed5): $ perl6-m -e 'my Str where "foo" $test' ===SORRY!=== Error while compiling -e Malformed my at -e:1 ---

Re: [perl #126494] [BUG] for lines() Hangs on 2 or More Files

2016-05-08 Thread Douglas E. Miles
I tried to reply on RT, but I couldn't. Was not able to reproduce on more current perl6: This is Rakudo version 2016.02-189-g8437418 built on MoarVM version 2016.02-33-g1e3d2ac Thanks! On 5/7/2016 1:07 PM, Sam S. via RT wrote: It works fine for me on a current Rakudo. (I'm using Linux, like

[perl #128094] [JVM] Issues with rakudo-j after merge of branch 'relocateable-precomp'

2016-05-08 Thread Christian Bartolomaeus via RT
Running the following code with RAKUDO_MODULE_DEBUG=1 revealed that rakudo-j did precompile a module, but was unable to use it afterwards -- and therefore removed it: $ echo '#' > Foo.pm6 $ RAKUDO_MODULE_DEBUG=1 ./perl6-j -I. -e 'use Foo' Since that happened with Test.pm as well, the long spect