view dmd/ArrayTypes.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 7e0d548de9e6
line wrap: on
line source

module dmd.ArrayTypes;

import dmd.Array;

class TemplateParameters : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Expressions : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Statements : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class BaseClasses : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class ClassDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Dsymbols : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class FuncDeclarations : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Arguments : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Identifiers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }

class Initializers : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }