comparison dmd/PostBlitDeclaration.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 e28b18c23469
children cd48cb899aee
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
20 version(DMDV2) 20 version(DMDV2)
21 class PostBlitDeclaration : FuncDeclaration 21 class PostBlitDeclaration : FuncDeclaration
22 { 22 {
23 this(Loc loc, Loc endloc) 23 this(Loc loc, Loc endloc)
24 { 24 {
25 register();
25 super(loc, endloc, Id._postblit, STCundefined, null); 26 super(loc, endloc, Id._postblit, STCundefined, null);
26 } 27 }
27 28
28 this(Loc loc, Loc endloc, Identifier id) 29 this(Loc loc, Loc endloc, Identifier id)
29 { 30 {
31 register();
30 super(loc, loc, id, STCundefined, null); 32 super(loc, loc, id, STCundefined, null);
31 } 33 }
32 34
33 override Dsymbol syntaxCopy(Dsymbol s) 35 override Dsymbol syntaxCopy(Dsymbol s)
34 { 36 {