comparison dmd/InvariantDeclaration.d @ 187:b0d41ff5e0df

Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
author Abscissa
date Tue, 07 Jun 2011 23:37:34 -0400
parents cd48cb899aee
children
comparison
equal deleted inserted replaced
186:1a0c1126bc46 187:b0d41ff5e0df
12 import dmd.STC; 12 import dmd.STC;
13 import dmd.TypeFunction; 13 import dmd.TypeFunction;
14 import dmd.Type; 14 import dmd.Type;
15 import dmd.AggregateDeclaration; 15 import dmd.AggregateDeclaration;
16 16
17 import dmd.DDMDExtensions;
18
17 class InvariantDeclaration : FuncDeclaration 19 class InvariantDeclaration : FuncDeclaration
18 { 20 {
21 mixin insertMemberExtension!(typeof(this));
22
19 this(Loc loc, Loc endloc) 23 this(Loc loc, Loc endloc)
20 { 24 {
21 register(); 25 register();
22 super(loc, endloc, Id.classInvariant, STCundefined, null); 26 super(loc, endloc, Id.classInvariant, STCundefined, null);
23 } 27 }