view dmd/CompileExp.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 01cadcfa4842
line wrap: on
line source

module dmd.CompileExp;

import dmd.Expression;
import dmd.UnaExp;
import dmd.OutBuffer;
import dmd.Loc;
import dmd.Scope;
import dmd.HdrGenState;
import dmd.TOK;

class CompileExp : UnaExp
{
	this(Loc loc, Expression e)
	{
		assert(false);
		super(loc, TOK.init, 0, null);
	}

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

	void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}
}