view dmd/ModuleDeclaration.d @ 81:722df8e7509c

* fixed win32_lib + Module.imports implementation * fixed Filename.absolute
author Trass3r
date Mon, 30 Aug 2010 15:40:51 +0200
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);
	}
}