comparison dmd/ArrayTypes.d @ 84:be2ab491772e

Expressions -> Vector!Expression
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 16:12:19 +0100
parents 7e0d548de9e6
children 3a0b150c9841
comparison
equal deleted inserted replaced
83:ee670dd808a8 84:be2ab491772e
1 module dmd.ArrayTypes; 1 module dmd.ArrayTypes;
2 2
3 import dmd.Array; 3 import dmd.Array;
4 4
5 class TemplateParameters : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 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 6
9 class Statements : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 7 class Statements : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
10 8
11 class BaseClasses : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } } 9 class BaseClasses : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
12 10