comparison dmd/ArrayTypes.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 7e0d548de9e6
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.ArrayTypes;
2
3 import dmd.Array;
4
5 class TemplateParameters : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
6
7 class Expressions : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
8
9 class Statements : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
10
11 class BaseClasses : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
12
13 class ClassDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
14
15 class Dsymbols : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
16
17 class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
18
19 class FuncDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
20
21 class Arguments : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
22
23 class Identifiers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
24
25 class Initializers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }