comparison dmd/DotIdExp.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 9d194c848e3a
children b0d41ff5e0df
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
48 { 48 {
49 Identifier ident; 49 Identifier ident;
50 50
51 this(Loc loc, Expression e, Identifier ident) 51 this(Loc loc, Expression e, Identifier ident)
52 { 52 {
53 register();
53 super(loc, TOK.TOKdot, DotIdExp.sizeof, e); 54 super(loc, TOK.TOKdot, DotIdExp.sizeof, e);
54 this.ident = ident; 55 this.ident = ident;
55 } 56 }
56 57
57 override Expression semantic(Scope sc) 58 override Expression semantic(Scope sc)