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