comparison dmd/UnaExp.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 14feb7ae01a6
children b64060ab22df
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
28 { 28 {
29 Expression e1; 29 Expression e1;
30 30
31 this(Loc loc, TOK op, int size, Expression e1) 31 this(Loc loc, TOK op, int size, Expression e1)
32 { 32 {
33 register();
33 super(loc, op, size); 34 super(loc, op, size);
34 this.e1 = e1; 35 this.e1 = e1;
35 } 36 }
36 37
37 override Expression syntaxCopy() 38 override Expression syntaxCopy()