view dmd/SwitchErrorStatement.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 63623152e82a
line wrap: on
line source

module dmd.SwitchErrorStatement;

import dmd.Statement;
import dmd.OutBuffer;
import dmd.Loc;
import dmd.IRState;
import dmd.HdrGenState;
import dmd.BE;

class SwitchErrorStatement : Statement
{
	this(Loc loc)
	{
		assert(false);
		super(loc);
	}

	BE blockExit()
	{
		assert(false);
	}

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

	void toIR(IRState* irs)
	{
		assert(false);
	}
}