[perl #125597] LTA error message when "while" or "until" have no condition

2015-07-10 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #125597] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125597 > Code: repeat { } while; OR repeat { } until; Result: Whitespace required after keyword

[perl #125596] LTA error message with if; and unless; without conditions

2015-07-10 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #125596] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125596 > Code: say 1 if; Result: ===SORRY!=== Whitespace required after keyword 'if' at ./test.

[perl #125595] [LHF] LTA error message with malformed loops

2015-07-10 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #125595] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125595 > Code: loop (my $i = 0; $i <= 5; $i++;) { say } Result: ===SORRY!=== Error while compil

[perl #93978] [spec] says "a comparison throws exception if either of its arguments is undefined"

2015-07-10 Thread Will Coleda via RT
On Sat Jun 13 14:37:03 2015, ronaldxs wrote: > On Sat May 11 13:48:34 2013, FROGGS.de wrote: > > TimToady: yes, comparisons should return failure, not automatically > > thrown an exception. > > It throws an appropriate exception now. I think if a qualified person > looked at this ticket they coul

[perl #114724] [BUG] Type variable doesn't match in signature to 'for' loop in Rakudo

2015-07-10 Thread Christian Bartolomaeus via RT
I added a test to S06-signature/type-capture.t with commit https://github.com/perl6/roast/commit/e26327b1b1 I'm closing this ticket as 'resolved'.

[perl #114370] LTA error message when declaring an enum of a type variable

2015-07-10 Thread Will Coleda via RT
On Wed Aug 01 11:12:13 2012, moritz wrote: > 20:08 < moritz> r: role A[::T] { my T enum B } > 20:08 <+p6eval> rakudo c1bfbb: OUTPUT«===SORRY!===␤Cannot auto-generate > a proto method for 'Numeric' in the setting␤» > > I don't think the spec requires it to live, but this looks like an > internal c

[perl6/specs] 5e0b4b: suppressed spurious double quotes

2015-07-10 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5e0b4bd50ae62e81c60cd5bf4e338c9ff93f6533 https://github.com/perl6/specs/commit/5e0b4bd50ae62e81c60cd5bf4e338c9ff93f6533 Author: Stéphane Payrard Date: 2015-07-09 (Thu, 09 Jul 2015) Changed paths: M S

[perl #125591] [BUG] Accessor use (correctly) forbidden in submethod body but (mistakenly) allowed in parameter default expression in Rakudo

2015-07-10 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #125591] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125591 > m: class C { has $.x = 42; submethod BUILD(:$.x) {} }; say C.new.x rakudo-moar fadca9:

[perl #125590] LTA error message when you try to modify an ro parameter

2015-07-10 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125590] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125590 > Simliar to https://rt.perl.org/Ticket/Display.html?id=125531, but that ticket appears for m