view dmd/PeelStatement.d @ 185:13cf8da225ce

Merge.
author Jacob Carlborg <doob@me.com>
date Tue, 02 Nov 2010 08:49:51 +0100
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);
	}
}