view dmd/ArrayTypes.d @ 76:5196b7829be2

Changed mars.c to mars2.c to avoid obscure bugs when wrong main function is linked
author korDen
date Sun, 29 Aug 2010 13:19:02 +0400
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; } }