view dmd/FileInitExp.d @ 13:427f8aa74d28

On the road to make Phobos compilable
author korDen
date Mon, 12 Apr 2010 16:29:33 +0400
parents 10317f0c89a5
children 460959608115
line wrap: on
line source

module dmd.FileInitExp;

import dmd.Expression;
import dmd.Loc;
import dmd.Scope;
import dmd.DefaultInitExp;
import dmd.TOK;

class FileInitExp : DefaultInitExp
{
	this(Loc loc)
	{
		super(loc, TOKfile, FileInitExp.sizeof);
	}

	Expression semantic(Scope sc)
	{
		assert(false);
	}

	Expression resolve(Loc loc, Scope sc)
	{
		assert(false);
	}
}