view dmd/ArrayTypes.d @ 79:43073c7c7769

updated to 2.035 also implemented a few missing functions still crashes in Import.importAll though
author Trass3r
date Mon, 30 Aug 2010 03:57:51 +0200
parents 7e0d548de9e6
children be2ab491772e
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 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; } }