comparison dmd/PragmaDeclaration.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 438eaa11eed4
children 0622fff7810a
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
27 { 27 {
28 Expressions args; // array of Expression's 28 Expressions args; // array of Expression's
29 29
30 this(Loc loc, Identifier ident, Expressions args, Dsymbols decl) 30 this(Loc loc, Identifier ident, Expressions args, Dsymbols decl)
31 { 31 {
32 register();
32 super(decl); 33 super(decl);
33 this.loc = loc; 34 this.loc = loc;
34 this.ident = ident; 35 this.ident = ident;
35 this.args = args; 36 this.args = args;
36 } 37 }