comparison dmd/CaseRangeStatement.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 c77e9f4f1793
children b0d41ff5e0df
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
22 Expression last; 22 Expression last;
23 Statement statement; 23 Statement statement;
24 24
25 this(Loc loc, Expression first, Expression last, Statement s) 25 this(Loc loc, Expression first, Expression last, Statement s)
26 { 26 {
27 register();
28
27 super(loc); 29 super(loc);
28 this.first = first; 30 this.first = first;
29 this.last = last; 31 this.last = last;
30 this.statement = s; 32 this.statement = s;
31 } 33 }