Re: You never have privacy from your children in Perl 6

2010-03-25 Thread Darren Duncan
Carl Mäsak wrote: Carl (>>), Darren (>): [...] and the 'trusts' keyword hasn't been realized in any Perl 6 implementation so far. I seem to recall that Pugs did support 'trusts' a few years ago, and that I used it. But I could be wrong. -- Darren Duncan I stand corrected. A quick search thro

Re: You never have privacy from your children in Perl 6

2010-03-25 Thread Carl Mäsak
Carl (>>), Darren (>): >> [...] and the >> 'trusts' keyword hasn't been realized in any Perl 6 implementation so >> far. > > I seem to recall that Pugs did support 'trusts' a few years ago, and that I > used it.  But I could be wrong. -- Darren Duncan I stand corrected. A quick search through the

Re: You never have privacy from your children in Perl 6

2010-03-25 Thread Darren Duncan
Carl Mäsak wrote: Carl (), Moritz (>>>), Carl (>>), Moritz (>): um, so 'protected' is when the deriving classes can see the attribute? yup that's what 'private' means in Perl 6. That's wrong. Perl 6's "private" is like Java's "private" - subclasses can't see it. It's just Rakudo being le

Re: You never have privacy from your children in Perl 6

2010-03-25 Thread Carl Mäsak
Carl (), Moritz (>>>), Carl (>>), Moritz (>): um, so 'protected' is when the deriving classes can see the attribute? yup that's what 'private' means in Perl 6. >>> >>> That's wrong. Perl 6's "private" is like Java's "private" - subclasses >>> can't see it. >>> It's just

Re: [perl #73796] rakudo compiler never builds due to thrashing

2010-03-25 Thread Will Coleda
On Thu, Mar 25, 2010 at 9:47 AM, Mark Montague wrote: >  On March 24, 2010 14:53 , Karthik BP (via RT) > wrote: >> >> I'm trying to build rel#27 on Ubuntu, with gcc4.4.1, libicu4.0.1 on my >> laptop having 512MB ram+750MB swap. The build seems to encounter a lot of >> memory thrashing. > > I enco

Re: [perl #73796] rakudo compiler never builds due to thrashing

2010-03-25 Thread Mark Montague
On March 24, 2010 14:53 , Karthik BP (via RT) wrote: I'm trying to build rel#27 on Ubuntu, with gcc4.4.1, libicu4.0.1 on my laptop having 512MB ram+750MB swap. The build seems to encounter a lot of memory thrashing. I encountered this problem some months back on a VM guest running Fedora 11.

Perl6 Test Suite

2010-03-25 Thread drakej
Hello, I am looking to work on the test suite as part of the GSoC program. I have a couple of questions, though, if somebody could help me out: The ideas page (http://www.perlfoundation.org/perl5/index.cgi?gsoc_2010_projects) spoke of the IO section needing quite a bit more work, is this referri

[perl #73774] [BUG] chained tight OR comparison broken

2010-03-25 Thread jn...@jnthn.net via RT
On Tue Mar 23 10:53:37 2010, cjfie...@illinois.edu wrote: > Using tight OR for conditional tests is broken when chaining more than > two tests (note second and forth test cases below). This is using > rakudo (rev a16cde8), below is the version. > > chris > > Example code: > > cjfields$ perl6 -v

[perl #73790] [BUG] Rakudo doesn't accept several -e options (but Perl 5 does)

2010-03-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73790] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73790 > $ perl -e 'print "OH HAI\n";' -e 'print "OH BAI BAI\n"' OH HAI OH BAI BAI $ perl6 -e 'p

[perl #73804] whitespace between expression and block

2010-03-25 Thread via RT
# New Ticket Created by Steven Albano # Please include the string: [perl #73804] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73804 > Hello, I was trying out some example code (release #27) when I stumbled upon what appe

[perl #73796] rakudo compiler never builds due to thrashing

2010-03-25 Thread via RT
# New Ticket Created by Karthik BP # Please include the string: [perl #73796] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73796 > Hi, When I follow the instructions to build the p6 compiler the make runs forever. $ make

[perl #73792] [BUG] 'state' vars in role bodies not supported in Rakudo

2010-03-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73792] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73792 > what would a state variable in a class definition be like? ash_: like this? class A {

Re: Perl6 Test Suite

2010-03-25 Thread Moritz Lenz
Hi, drakej wrote: > I am looking to work on the test suite as part of the GSoC program. I > have a couple of questions, though, if somebody could help me out: > > The ideas page > (http://www.perlfoundation.org/perl5/index.cgi?gsoc_2010_projects) spoke > of the IO section needing quite a bit mo