comparison dmd/ForeachRangeStatement.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 b0d41ff5e0df
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
44 44
45 VarDeclaration key = null; 45 VarDeclaration key = null;
46 46
47 this(Loc loc, TOK op, Parameter arg, Expression lwr, Expression upr, Statement body_) 47 this(Loc loc, TOK op, Parameter arg, Expression lwr, Expression upr, Statement body_)
48 { 48 {
49 register();
49 super(loc); 50 super(loc);
50 this.op = op; 51 this.op = op;
51 this.arg = arg; 52 this.arg = arg;
52 this.lwr = lwr; 53 this.lwr = lwr;
53 this.upr = upr; 54 this.upr = upr;