view dmd/PeelStatement.d @ 87:b17640f0e4e8

Fixed a bug with a Scope.this(Scope enclosing) being called instead of Scope.clone() method (as a copy ctor replacement)
author korDen
date Mon, 30 Aug 2010 19:56:27 +0400
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.PeelStatement;

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

class PeelStatement : Statement
{
	Statement s;

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

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