comparison dmd/DeleteDeclaration.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 60bb0fe4563e
children cd48cb899aee
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
21 { 21 {
22 Parameters arguments; 22 Parameters arguments;
23 23
24 this(Loc loc, Loc endloc, Parameters arguments) 24 this(Loc loc, Loc endloc, Parameters arguments)
25 { 25 {
26 register();
26 super(loc, endloc, Id.classDelete, STCstatic, null); 27 super(loc, endloc, Id.classDelete, STCstatic, null);
27 this.arguments = arguments; 28 this.arguments = arguments;
28 } 29 }
29 30
30 override Dsymbol syntaxCopy(Dsymbol) 31 override Dsymbol syntaxCopy(Dsymbol)