[perl #64116] Null PMC access when using an accessor after creating an object with .CREATE

2009-03-24 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #64116] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64116 masak rakudo: class A { has %.env is rw }; my $a = A.CREATE; $a.env = { foo = 'bar'

Probelm building Rakudo under Cygwin and Vista-64

2009-03-24 Thread Michael Matsko
All, I'm trying to build Rakudo as a prelude to getting started in development. I'm trying to build under Cygwin on a Vista-64 system. I'm configuring the system with ./Configure.pl --gen-parrot. Parrot downloads from svn and builds quite nicely. I run make and it compiles, but doesn't want

[perl #64132] rakudo -v does wrong output

2009-03-24 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #64132] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64132 Hi there, ihrd:~$ perl6 -v This is Rakudo Perl 6, revision 37614 built on parrot

[perl #64142] S05-capture/caps.t failure

2009-03-24 Thread via RT
# New Ticket Created by zjhm # Please include the string: [perl #64142] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64142 Failure: - Test 6 of t/spec/S05-capture/caps.t Relevant lines of code ( TestCase 5 TC 6

Re: [perl #63874] [PATCH] floor-ceiling-round-sign-and-abs-in-perl6

2009-03-24 Thread Patrick R. Michaud
On Mon, Mar 16, 2009 at 09:41:37PM -0700, Geoffrey Broadwell wrote: On Mon, 2009-03-16 at 21:08 -0500, Patrick R. Michaud wrote: By putting floor/ceiling/round/sign/abs as a candidates for the setting I was really aiming more for inline PIR than a pure Perl 6 solution. We still need those

Re: [perl #63908] ~$stuff.WHAT should end in ()

2009-03-24 Thread Patrick R. Michaud
On Tue, Mar 17, 2009 at 11:36:52AM -0700, jn...@jnthn.net via RT wrote: On Sun Mar 15 15:27:41 2009, moritz wrote: S12-objects.pod 1581:WHATthe protoobject of the type, stringifies to short name ~ '()' Currently it stringfies to short name without trailing (). If

Re: [perl #63922] Fresh rakudo fails to build on FreeBSD

2009-03-24 Thread yary
I am still getting a Null PMC access in get_pmc_keyed_str() error when building parrot as part of rakudo on my OpenBSD system, same error Alex had when starting this thread. I've tracked it down to line 170 in runtime/parrot/library/parrotlib.pir .sub find_file_path .param string name

Re: [perl #63874] [PATCH] floor-ceiling-round-sign-and-abs-in-perl6

2009-03-24 Thread Geoffrey Broadwell
On Tue, 2009-03-24 at 11:56 -0500, Patrick R. Michaud wrote: On Mon, Mar 16, 2009 at 09:41:37PM -0700, Geoffrey Broadwell wrote: On Mon, 2009-03-16 at 21:08 -0500, Patrick R. Michaud wrote: By putting floor/ceiling/round/sign/abs as a candidates for the setting I was really aiming more

[perl #64170] 'is also' is now called 'augment'

2009-03-24 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64170] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64170 Spec r25607 changed 'class Foo is also { ... }' to 'augment class Foo { ... }',

Re: [perl #63874] [PATCH] floor-ceiling-round-sign-and-abs-in-perl6

2009-03-24 Thread Jonathan Worthington
Geoffrey Broadwell wrote: On Tue, 2009-03-24 at 11:56 -0500, Patrick R. Michaud wrote: On Mon, Mar 16, 2009 at 09:41:37PM -0700, Geoffrey Broadwell wrote: Gotcha. Sounds fine by me (as long as the Perl 6 signatures don't carry significantly more overhead than the pure-PIR version).