comparison dmd/TupleDeclaration.d @ 13:427f8aa74d28

On the road to make Phobos compilable
author korDen
date Mon, 12 Apr 2010 16:29:33 +0400
parents 10317f0c89a5
children 460959608115
comparison
equal deleted inserted replaced
12:832f71e6f96c 13:427f8aa74d28
15 15
16 TypeTuple tupletype; // !=NULL if this is a type tuple 16 TypeTuple tupletype; // !=NULL if this is a type tuple
17 17
18 this(Loc loc, Identifier ident, Objects objects) 18 this(Loc loc, Identifier ident, Objects objects)
19 { 19 {
20 assert(false);
21 super(ident); 20 super(ident);
21 this.type = null;
22 this.objects = objects;
23 this.isexp = 0;
24 this.tupletype = null;
22 } 25 }
23 26
24 Dsymbol syntaxCopy(Dsymbol) 27 Dsymbol syntaxCopy(Dsymbol)
25 { 28 {
26 assert(false); 29 assert(false);