Re: Exceptions and Concurrency Questions

2008-05-04 Thread Allison Randal
Allison Randal wrote: Presumably the handled opcode will remove the exception Task from the scheduler and resume execution at the appropriate point. Presumably also the declining to handle an exception (the replacement for rethrow) will cause the scheduler to move to the next exception

Re: [perl #48971] Parrot build failure no such instruction: `trap'

2008-05-04 Thread Walter M Szeliga
Excellent, the patch from ticket 52214 works. Walter

Re: YAPC::EU 2008

2008-05-04 Thread Bernhard Schmalhofer
Jonathan Worthington schrieb: Allison Randal wrote: Will Coleda schrieb: Can we get an idea of how many parrot hackers are planning on attending YAPC::EU this year? (will be held in Copenhagen, Denmark, on 13-15 August 2008 Bernhard Schmalhofer wrote: Is there enough critical mass that

[perl #53684] here is the revised file

2008-05-04 Thread William Herrera
# New Ticket Created by William Herrera # Please include the string: [perl #53684] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=53684 /* compiler.h * Copyright (C) 2007-2008, The Perl Foundation. * SVN Info *

[perl #53666] [PATCH] Implementation of kv method for rakudo's hashes.

2008-05-04 Thread via RT
# New Ticket Created by Vasily Chekalkin # Please include the string: [perl #53666] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=53666 Hello. There is implementation of kv method for rakudo. Only

[perl #53682] Cage cleaning: Visual Studio compiler for parrot

2008-05-04 Thread William Herrera
# New Ticket Created by William Herrera # Please include the string: [perl #53682] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=53682 The MS C compiler produces numerous warnings about not all paths return a value

Re: grammar for 'constant' ?

2008-05-04 Thread Moritz Lenz
John M. Dlugosz wrote: The synopses are contradictary over the way 'constant' works. First it says that it is a declarator like 'my'. That's what STD.pm says: token scope_declarator:my { sym scoped {*} } token scope_declarator:our { sym scoped {*} } token scope_declarator:state

Re: grammar for 'constant' ?

2008-05-04 Thread John M. Dlugosz
Moritz Lenz moritz-at-casella.verplant.org |Perl 6| wrote: Then in S12 it shows my constant ... and our constant ... that is, independant from the my or our declarator. I grep'ped STD.pm tentatively for other occurrences of 'constant', and couldn't find where that should be

Where is Manhattan Dispatch discussion?

2008-05-04 Thread John M. Dlugosz
I want to review and collect the wisdom of what has been discussed before. Someone mentioned this the other day, as being a significant consensus. But I can't find anything in the forum archives. Can someone point to the discussion, position papers, etc.? --John

not a reference - What does this mean?

2008-05-04 Thread John M. Dlugosz
Perl 6 doesn't have references anymore, it has captures. So, what does the following mean: @x = foo bar; $a = [1, 2, [EMAIL PROTECTED]; I imagine that the 3rd element of the Array is itself an Array, and is the same object that is bound to @x. But captures are lazy context-sensitive

Re: not a reference - What does this mean?

2008-05-04 Thread Jonathan Worthington
John M. Dlugosz wrote: Perl 6 doesn't have references anymore, it has captures. So, what does the following mean: @x = foo bar; $a = [1, 2, [EMAIL PROTECTED]; I imagine that the 3rd element of the Array is itself an Array, and is the same object that is bound to @x. But captures are lazy