comparison dmd/AliasDeclaration.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
17 import dmd.Scope; 17 import dmd.Scope;
18 import dmd.STC; 18 import dmd.STC;
19 import dmd.Expression; 19 import dmd.Expression;
20 import dmd.Global; 20 import dmd.Global;
21 21
22 import dmd.DDMDExtensions;
23
22 class AliasDeclaration : Declaration 24 class AliasDeclaration : Declaration
23 { 25 {
26 mixin insertMemberExtension!(typeof(this));
27
24 Dsymbol aliassym; 28 Dsymbol aliassym;
25 Dsymbol overnext; // next in overload list 29 Dsymbol overnext; // next in overload list
26 int inSemantic; 30 int inSemantic;
27 31
28 this(Loc loc, Identifier ident, Type type) 32 this(Loc loc, Identifier ident, Type type)