[perl #121310] [BUG] Null PMC access when smartmatching True ~~ True on the REPL in Rakudo on Parrot

2014-02-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #121310] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=121310 > okay, one more question, and I'll leave you guys alone [; p: True ~~ True rakudo-parro

[perl #121296] `of' Type annotation NYI for `constant` declarator

2014-02-23 Thread via RT
# New Ticket Created by raiph # Please include the string: [perl #121296] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=121296 > my Int constant foo = 1 # should work and does in rakudo my constant foo of Int = 1 # shoul

[perl6/specs] f00b2e: S32/IO: Ensure there's space between text and code

2014-02-23 Thread GitHub
Branch: refs/heads/pod6ify Home: https://github.com/perl6/specs Commit: f00b2e5fb54cedd87107a0aec6b3238f93bb1a97 https://github.com/perl6/specs/commit/f00b2e5fb54cedd87107a0aec6b3238f93bb1a97 Author: Mouq Date: 2014-02-23 (Sun, 23 Feb 2014) Changed paths: M S32-setting-

[perl6/specs] 7f3f23: semaphore spec draft

2014-02-23 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 7f3f23c8eebd60e725f9c3800acee48b948ad873 https://github.com/perl6/specs/commit/7f3f23c8eebd60e725f9c3800acee48b948ad873 Author: Timo Paulssen Date: 2014-02-22 (Sat, 22 Feb 2014) Changed paths: M S17-

[perl6/specs] c84f00: Strip =encoding utf8 from files

2014-02-23 Thread GitHub
Branch: refs/heads/pod6ify Home: https://github.com/perl6/specs Commit: c84f005db5b69814e065243b98e33caea9521bd0 https://github.com/perl6/specs/commit/c84f005db5b69814e065243b98e33caea9521bd0 Author: Mouq Date: 2014-02-22 (Sat, 22 Feb 2014) Changed paths: M S01-overview

[perl6/specs] e39e9b: Have existing Pod6 specs end in .pod6

2014-02-23 Thread GitHub
Branch: refs/heads/pod6ify Home: https://github.com/perl6/specs Commit: e39e9b0b3a47e7644318245405bf2da5ccf2a113 https://github.com/perl6/specs/commit/e39e9b0b3a47e7644318245405bf2da5ccf2a113 Author: lue Date: 2014-02-22 (Sat, 22 Feb 2014) Changed paths: R S15-unicode.p

[perl6/specs] e6effc: S32/IO: Some more implicit code fixes missed in la...

2014-02-23 Thread GitHub
Branch: refs/heads/pod6ify Home: https://github.com/perl6/specs Commit: e6effc6513bcb53a7ee4ac58afc09fb751c0d6d7 https://github.com/perl6/specs/commit/e6effc6513bcb53a7ee4ac58afc09fb751c0d6d7 Author: Mouq Date: 2014-02-23 (Sun, 23 Feb 2014) Changed paths: M S32-setting-

[perl #76680] [BUG] Win32 MinGW cannot start coretest due to bash-specific ENV prefixing

2014-02-23 Thread Will Coleda via RT
On Thu Jul 22 13:19:22 2010, util wrote: > $ git show | head -1 > commit 6442956542337f1d2d744d4b5ba621ce73a1e5af > > In build/Makefile.in, the target "coretest" sets PARROT as an ENV > variable, > because t/02-embed/01-load.t needs to know the path to the parrot > executable. > PARROT=$

[perl #76278] [BUG] &make outside of an action method has no effect in Rakudo

2014-02-23 Thread Will Coleda via RT
On Tue Jun 29 15:37:31 2010, masak wrote: > rakudo: "foo" ~~ /foo/; say "What kind of $()l am I?" > rakudo 451b40: OUTPUT«What kind of l am I?␤» > hm, shouldn't that say 'fool'? > no > rakudo: "foo" ~~ / foo {make "foo"} /; say "What kind of $()l am I?" > pmichaud: what about that? > masak:

[perl #75638] Multis are not exported by default

2014-02-23 Thread Will Coleda via RT
On Wed Jun 09 10:41:32 2010, moritz wrote: > IIRC the spec says that multis should be exported by default, in Rakudo > they are not (making the JSON emitter in JSON::Tiny and thus a book > example a bit awkward) > >From S11: Any C declaration that is not declared C is exported by default. Any C

[perl #72874] [BUG] Rakudo makes assignment out of >= even though it's a diffy chaining operator

2014-02-23 Thread Will Coleda via RT
On Tue Feb 16 02:04:32 2010, masak wrote: > rakudo: say 6 >== 2 > rakudo c3aaa2: OUTPUT«Cannot assign to readonly value␤current > instr.: '&infix:<=>' [...] > weird.. it's using *any* operator as an assignment > operator, not just infix > I mean, not just non-boolean-returning :) > alpha: say

[perl #78454] [BUG] Filehandle not flushed at program exit

2014-02-23 Thread Will Coleda via RT
On Tue Oct 19 13:47:36 2010, Solomon wrote: > my $file = open "test.txt", :w; > > for 1..1000 { > $file.say: sprintf("This is a test >%7d", $_); > } > > > # end of text.txt after executing this: > > This is a test980 > This is a test

[perl #77752] callframe.perl message is LTA

2014-02-23 Thread Will Coleda via RT
On Thu Sep 09 08:57:52 2010, pawel.pab...@implix.com wrote: > [17:43] rakudo: callframe.perl # known_and_NYI or should I > report it as > TODO? in STD this is valid syntax. > [17:43] rakudo 859f2d: OUTPUT«Method 'perl' not found for > invocant of > class 'ParrotInterpreter'␤ in at line 1237:CO

[perl #77144] "while $foo ~~ m:g//" should warn

2014-02-23 Thread Will Coleda via RT
On Wed Aug 11 09:37:18 2010, moritz wrote: > Fwiw, m:g// wasn't working at all, and I've disabled it again until I > find a way for it to actually return list of Match objects. > > I don't see how this can be made to warn in safe and generic way that > doesn't totally bork the separation of concer