[svn:perl6-synopsis] r14467 - doc/trunk/design/syn

2007-10-26 Thread larry
Author: larry Date: Fri Oct 26 02:53:13 2007 New Revision: 14467 Modified: doc/trunk/design/syn/S03.pod Log: String composition operators now get their own two precedence levels looser than number composers but tighter than junctions, as suggested by tye++. Modified:

Re: [perl #44945] [CAGE] Add Documentation to Undef PMC

2007-10-26 Thread David Romano
chromatic wrote on Sat, Aug 25, 2007 at 11:09:24PM PDT: There's almost no vtable entry documentation in src/pmc/undef.pmc. You can copy it almost verbatim from almost any other PMC. This is an easy task that requires almost no C or Perl knowledge. This isn't much documentation, and I hope

[perl #43330] [TODO] config/inter/libparrot.pm: Write unit tests

2007-10-26 Thread James Keenan via RT
New test files contributed in r22500 and r22501.

pdd15 conversion of Lua

2007-10-26 Thread François PERRAD
The conversion of Lua is ended. The main issue was with the grammar parser : Lua keywords were recognized as identifier. I solve it by renaming the rule 'name' to 'Name' (r22499). This rule is defined in lua/src/lua51.pir and used by lua/src/lua51.pg So, that sounds strange. François.

[perl #46933] [PATCH] [RFE] Change behavior of Data::Dumper wrt Undef

2007-10-26 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #46933] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46933 Currently, Data::Dumper treats Undef pmcs like any other pmcs. When dumping, then,

Re: pdd15 conversion of Lua

2007-10-26 Thread Klaas-Jan Stol
I just remembered you wrote the 'name' rule and keyword handling yourself by hand. I guess the solution below doesn't help you much then. Is there any reason not to replace the handwritten stuff by the more standard (and maintainable?) PGE version of name/keyword handling? kjs On 10/26/07,

Re: pdd15 conversion of Lua

2007-10-26 Thread Klaas-Jan Stol
I think it can be solved by adding a precondition the identifier rule, for instance, like so: rule identifier { !keyword [a-zA-Z]* } (an identifier is a series of letters, but it's not in keyword; not sure if the ! ... syntax is still valid, or that it was changed recently). rule keyword {

[svn:parrot-pdd] r22505 - trunk/docs/pdds

2007-10-26 Thread particle
Author: particle Date: Fri Oct 26 10:26:57 2007 New Revision: 22505 Modified: trunk/docs/pdds/pdd23_exceptions.pod Log: [PDD23]: typo and formatting fixes Modified: trunk/docs/pdds/pdd23_exceptions.pod == ---

Re: [perl #46927] [PATCH] Remove integer - pointer comparison in slice.pmc

2007-10-26 Thread Joshua Isom
On Oct 25, 2007, at 4:35 PM, Paul Cochrane (via RT) wrote: # New Ticket Created by Paul Cochrane # Please include the string: [perl #46927] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46927 The attached patch

[perl #46937] [PATCH] Parenthesis spacing patch (win32)

2007-10-26 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46937] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46937 This patch enables the t/codingstd/c_parens.t coding standard to pass completely.

[perl #46939] [PATCH] Added PCCMETHOD dependencies to Makefile

2007-10-26 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46939] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46939 The attached patch adds dependencies to lib/Parrot/Pmc2c/PCCMETHOD.pm if the .pmc

Re: [perl #46939] [PATCH] Added PCCMETHOD dependencies to Makefile

2007-10-26 Thread chromatic
On Friday 26 October 2007 15:03:12 Paul Cochrane wrote: The attached patch adds dependencies to lib/Parrot/Pmc2c/PCCMETHOD.pm if the .pmc uses PCCMETHODs. This should also then allow the t/codingstd/pccmethod_deps.t test to pass. +1 -- c

Re: [perl #46939] [PATCH] Added PCCMETHOD dependencies to Makefile

2007-10-26 Thread Paul Cochrane
On 27/10/2007, chromatic [EMAIL PROTECTED] wrote: On Friday 26 October 2007 15:03:12 Paul Cochrane wrote: The attached patch adds dependencies to lib/Parrot/Pmc2c/PCCMETHOD.pm if the .pmc uses PCCMETHODs. This should also then allow the t/codingstd/pccmethod_deps.t test to pass. +1

[perl #43330] [TODO] config/inter/libparrot.pm: Write unit tests

2007-10-26 Thread James Keenan via RT
With modification of one test file in r22511, we have achieved 100% test coverage of this package's code. Resolving ticket.

[svn:perl6-synopsis] r14468 - doc/trunk/design/syn

2007-10-26 Thread larry
Author: larry Date: Fri Oct 26 16:54:25 2007 New Revision: 14468 Modified: doc/trunk/design/syn/S06.pod doc/trunk/design/syn/S12.pod Log: Some clarifications suggested by Wolfgang Laun++ and TheDamian++ and others++ Modified: doc/trunk/design/syn/S06.pod

[perl #43331] [TODO] config/init/optimize.pm: Write unit tests

2007-10-26 Thread James Keenan via RT
Addition of two more test files in r22513 enabled us to eke out a bit more test coverage, getting us to 100% across the board.

[perl #43344] [TODO] config/inter/types.pm: Write unit tests

2007-10-26 Thread James Keenan via RT
Two test files contributed in r22514 bring us to 100% test coverage on this configuration step class. Resolving ticket.

[perl #43172] [TODO] Is interactive configuration step necessary in config/inter/pmc.pm?

2007-10-26 Thread James Keenan via RT
On Fri Jun 08 06:53:46 2007, ptc wrote: In the file config/inter/pmc.pm, there is the comment: # XXX:leo do we really need an interactive step for this # user could deactivate vital PMCs like SArray # so there would be tests needed, that check for vital classes This relates to