[svn:parrot-pdd] r17972 - trunk/docs/pdds/draft

2007-04-03 Thread allison
Author: allison Date: Tue Apr 3 23:59:28 2007 New Revision: 17972 Modified: trunk/docs/pdds/draft/pdd15_objects.pod Log: [pdd]: Add new vtable entries for classes, objects, and roles to the Objects PDD. Make a note about methods on classes and roles. Modified: trunk/docs/pdds/draft/pdd15_ob

[perl #42293] t/doc/pod.t vs. tools/doc/pod_errors.pl

2007-04-03 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #42293] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=42293 > These two scripts perform the same basic task, but do so inconsistently. The tools/ scri

parrotcode updates.

2007-04-03 Thread Will Coleda
At the moment, it takes a lot of busy work to get the website updated with changes to the repository: any time directories changes around, or new files are added, I have to muck with the site to keep things working. (adding .html files that point into the repository, renaming them to keep

[svn ci] NCI methods now name-mangled

2007-04-03 Thread Jonathan Worthington
Hi, I was working on starting to move class functionality into v-table methods, as discussed on list recently. However, I hit an interesting issue - you cannot have a METHOD or PCCMETHOD with the same name as a vtable method. We need to be able to do that to implement the interface specified

Re: Syntax for Constructing new Objects (and classes?)

2007-04-03 Thread Alek Storm
Since classes are now a great deal more polymorphic, it seems we don't really need a newclass opcode anymore, since HLLs will instantiate the class objects themselves anyway. Instead of having $P0 = get_class "HLLClass" $P1 = $P0.new() Or: $P0 = get_hll_namespace $P1 = $P0.find_class("HLLClass

Re: [perl #42292] [TODO] modify PCCMETHOD syntax to more closely match PDD03

2007-04-03 Thread jerry gay
On 4/3/07, chromatic <[EMAIL PROTECTED]> wrote: On Tuesday 03 April 2007 14:49, Jerry Gay wrote: > # New Ticket Created by Jerry Gay > # Please include the string: [perl #42292] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.htm

Re: [perl #42292] [TODO] modify PCCMETHOD syntax to more closely match PDD03

2007-04-03 Thread chromatic
On Tuesday 03 April 2007 14:49, Jerry Gay wrote: > # New Ticket Created by Jerry Gay > # Please include the string: [perl #42292] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=42292 > > > > PCCMETHOD specifies C > PDD03 s

[perl #42292] [TODO] modify PCCMETHOD syntax to more closely match PDD03

2007-04-03 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #42292] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=42292 > PCCMETHOD specifies C PDD03 specifies C i think it's possible to make the two look more al

Re: Hash iteration question

2007-04-03 Thread Leopold Toetsch
Am Dienstag, 3. April 2007 06:56 schrieb Allison Randal: > > The major problem is probably, that there are no specific iterator > > interface vtable functions that an iterator would use. > > Isn't that what nextkey_keyed is for? Though, looking at it, it seems > more like part of the problem of ent

Re: Syntax for Constructing new Objects (and classes?)

2007-04-03 Thread Allison Randal
Allison Randal wrote: Class is the base for all classes. I can see the value of stripping away any methods that may interfere with a particular HLL's concept of how a class should behave, so we'll do that. And what should we call the subclass of Class that adds lots of methody syntactic sugar

[perl #42286] [CAGE]: Parrot::Pmc2c::PCCMETHOD constants should be autogenerated

2007-04-03 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #42286] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=42286 > lib/Parrot/Pmc2c/PCCMETHOD.pm contains a number of constants, defined for use in the packag

Paper on Software Patterns in Parrot

2007-04-03 Thread Klaas-Jan Stol
Hello, for a course "Software Patterns" I did recently, I co-authored a paper on software patterns in Parrot. I put it on the wiki, at: http://rakudo.org/parrot/index.cgi?publications_on_parrot It may be of interest :-) Regards, Klaas-Jan

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

2007-04-03 Thread pmichaud
Author: pmichaud Date: Tue Apr 3 07:19:57 2007 New Revision: 14368 Modified: doc/trunk/design/syn/S05.pod Log: Add leading whitespace to lines so that the table actually ends up looking like a table instead of wrapping the text onto a single line. Modified: doc/trunk/design/syn/S05.pod

Re: Syntax for Constructing new Objects (and classes?)

2007-04-03 Thread Jonathan Worthington
Alek Storm wrote: I've asked for something pretty darn close to what you've suggested (see #41619), but you've explained it a lot better than I ever could. Glad we're thinking similar things. What I think you were saying: Default |