comparison dmd/AnonDeclaration.d @ 178:e3afd1303184

Many small bugs fixed Made all classes derive from TObject to detect memory leaks (functionality is disabled for now) Began work on overriding backend memory allocations (to avoid memory leaks)
author korDen
date Sun, 17 Oct 2010 07:42:00 +0400
parents e7769d53e750
children cd48cb899aee
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
20 int isunion; 20 int isunion;
21 int sem = 0; // 1 if successful semantic() 21 int sem = 0; // 1 if successful semantic()
22 22
23 this(Loc loc, int isunion, Dsymbols decl) 23 this(Loc loc, int isunion, Dsymbols decl)
24 { 24 {
25 register();
25 super(decl); 26 super(decl);
26 this.loc = loc; 27 this.loc = loc;
27 this.isunion = isunion; 28 this.isunion = isunion;
28 } 29 }
29 30