view dmd/ModuleDeclaration.d @ 83:ee670dd808a8

malloc -> GC.malloc change, plus compilation issues fixed (always check before commiting stuff!!!)
author korDen
date Mon, 30 Aug 2010 18:42:04 +0400
parents 10317f0c89a5
children e28b18c23469
line wrap: on
line source

module dmd.ModuleDeclaration;

import dmd.Identifier;
import dmd.Array;

class ModuleDeclaration
{
    Identifier id;
    Array packages;		// array of Identifier's representing packages
    bool safe;

    this(Array packages, Identifier id, bool safe)
	{
		this.packages = packages;
		this.id = id;
		this.safe = safe;
	}

    string toChars()
	{
		assert(false);
	}
}