comparison dmd/StaticDtorDeclaration.d @ 110:12c0c84d13fd

merged in 2.036 changes
author Trass3r
date Tue, 31 Aug 2010 22:29:00 +0200
parents e6090d1aea7c 8e1e220cebb3
children e28b18c23469
comparison
equal deleted inserted replaced
109:ceda59b4d255 110:12c0c84d13fd
40 40
41 override Dsymbol syntaxCopy(Dsymbol s) 41 override Dsymbol syntaxCopy(Dsymbol s)
42 { 42 {
43 assert(!s); 43 assert(!s);
44 StaticDtorDeclaration sdd = new StaticDtorDeclaration(loc, endloc); 44 StaticDtorDeclaration sdd = new StaticDtorDeclaration(loc, endloc);
45 return FuncDeclaration.syntaxCopy(sdd); 45 return super.syntaxCopy(sdd);
46 } 46 }
47 47
48 override void semantic(Scope sc) 48 override void semantic(Scope sc)
49 { 49 {
50 ClassDeclaration cd; 50 ClassDeclaration cd;