View Issue Details

IDProjectCategoryView StatusLast Update
0000264Ecere SDKcompilerpublic2013-04-27 21:20
Reportersacrebleu Assigned To 
PrioritylowSeverityfeatureReproducibilityN/A
Status newResolutionopen 
Summary0000264: Pluralization for classes, "with" clause
Descriptionclass Bead {
 int blah;
} plural Beads;

Beads beads, beads2, beads3;
Bead bead, bead2;

bead = Bead { 1 };
beads[0] = bead;
beads.add( bead );
beads.remove( bead );
beads.insert( bead, beads (or null?) );
beads.sort( by blah? );
bead2 = bead.copy();

beads2=beads.copy();

beads3=beads.intersect(beads2);

{
int x;
for ( x=0; x<beads.length; x++ ) ..
}

beads.merge(beads2); // or "union"?
beads3=beads.append(beads,beads2);
beads2=beads3.reverse(); // GC?
beads3.reverse();
for ( bead = beads3; bead != null; bead=bead.next ) ...
with( beads3 as b ) ... like php foreach

if ( bead[2] ) bead[2].blah = 2;
else print (" There is no bead[2] ");

delete beads, beads2, beads3;
delete bead;

with ( bead ) { blah=1; }
TagsNo tags attached.

Activities

jerome

2010-07-29 15:48

administrator   ~0000295

Some consideration of this should be done.

Perhaps with a way of specifying which type of containers to use for the plural.

Issue History

Date Modified Username Field Change
2009-10-19 20:34 sacrebleu New Issue
2009-10-19 20:35 sacrebleu Status new => assigned
2009-10-19 20:35 sacrebleu Assigned To => jerome
2010-07-29 15:48 jerome Note Added: 0000295
2012-03-08 16:52 redj Target Version => 0.45 Ginkakuji
2012-03-29 07:52 redj Category => ide
2012-03-29 07:52 redj Project @3@ => Ecere SDK
2013-04-24 20:36 jerome Status assigned => new
2013-04-24 20:37 jerome Assigned To jerome =>
2013-04-27 21:20 jerome Priority high => low
2013-04-27 21:20 jerome Severity major => feature
2013-04-27 21:20 jerome Reproducibility always => N/A
2013-04-27 21:20 jerome Category ide => compiler
2013-04-27 21:20 jerome Target Version 0.45 Ginkakuji => 0.46.1
2013-04-27 21:20 jerome Description Updated