comparison dmd/NewDeclaration.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
22 Parameters arguments; 22 Parameters arguments;
23 int varargs; 23 int varargs;
24 24
25 this(Loc loc, Loc endloc, Parameters arguments, int varargs) 25 this(Loc loc, Loc endloc, Parameters arguments, int varargs)
26 { 26 {
27 register();
27 super(loc, endloc, Id.classNew, STCstatic, null); 28 super(loc, endloc, Id.classNew, STCstatic, null);
28 this.arguments = arguments; 29 this.arguments = arguments;
29 this.varargs = varargs; 30 this.varargs = varargs;
30 } 31 }
31 32