comparison dmd/TupleDeclaration.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 e3afd1303184
children
comparison
equal deleted inserted replaced
186:1a0c1126bc46 187:b0d41ff5e0df
14 import dmd.DYNCAST; 14 import dmd.DYNCAST;
15 import dmd.OutBuffer; 15 import dmd.OutBuffer;
16 import dmd.Expression; 16 import dmd.Expression;
17 import dmd.DsymbolExp; 17 import dmd.DsymbolExp;
18 18
19 import dmd.DDMDExtensions;
20
19 class TupleDeclaration : Declaration 21 class TupleDeclaration : Declaration
20 { 22 {
23 mixin insertMemberExtension!(typeof(this));
24
21 Objects objects; 25 Objects objects;
22 int isexp; // 1: expression tuple 26 int isexp; // 1: expression tuple
23 27
24 TypeTuple tupletype; // !=NULL if this is a type tuple 28 TypeTuple tupletype; // !=NULL if this is a type tuple
25 29