view dmd/PeelStatement.d @ 179:cd48cb899aee

Updated to dmd2.040
author korDen
date Sun, 17 Oct 2010 20:56:07 +0400
parents e3afd1303184
children b0d41ff5e0df
line wrap: on
line source

module dmd.PeelStatement;

import dmd.common;
import dmd.Statement;
import dmd.Scope;
import dmd.Loc;

class PeelStatement : Statement
{
	Statement s;

	this(Statement s)
	{
		register();
		assert(false);
		super(Loc(0));
	}

	override Statement semantic(Scope sc)
	{
		assert(false);
	}
}