view dmd/ModuleDeclaration.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 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);
	}
}