comparison dmd/ArrayTypes.d @ 94:3a0b150c9841

Objects -> Vector!Object iteration 1
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 23:00:34 +0100
parents be2ab491772e
children 3482c73a991b
comparison
equal deleted inserted replaced
93:df6d0f967680 94:3a0b150c9841
10 10
11 class ClassDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 11 class ClassDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
12 12
13 //class Dsymbols : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 13 //class Dsymbols : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
14 14
15 class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 15 alias Vector!Object Objects;
16 //class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
16 17
17 class Arguments : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 18 class Arguments : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
18 19
19 class Identifiers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 20 class Identifiers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
20 21