comparison dmd/SliceExp.d @ 64:4290d870944a

More fixes
author korDen
date Mon, 23 Aug 2010 20:29:15 +0400
parents cab4c37afb89
children 2e2a5c3f943a
comparison
equal deleted inserted replaced
63:cab4c37afb89 64:4290d870944a
487 return e; 487 return e;
488 } 488 }
489 489
490 void scanForNestedRef(Scope sc) 490 void scanForNestedRef(Scope sc)
491 { 491 {
492 assert(false); 492 e1.scanForNestedRef(sc);
493
494 if (lengthVar)
495 {
496 //printf("lengthVar\n");
497 lengthVar.parent = sc.parent;
498 }
499 if (lwr)
500 lwr.scanForNestedRef(sc);
501 if (upr)
502 upr.scanForNestedRef(sc);
493 } 503 }
494 504
495 void buildArrayIdent(OutBuffer buf, Expressions arguments) 505 void buildArrayIdent(OutBuffer buf, Expressions arguments)
496 { 506 {
497 buf.writestring("Slice"); 507 buf.writestring("Slice");