view dmd/DefaultInitExp.d @ 13:427f8aa74d28

On the road to make Phobos compilable
author korDen
date Mon, 12 Apr 2010 16:29:33 +0400
parents 10317f0c89a5
children 460959608115
line wrap: on
line source

module dmd.DefaultInitExp;

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

class DefaultInitExp : Expression
{
	TOK subop;

	this(Loc loc, TOK subop, int size)
	{
		super(loc, TOKdefault, size);
		this.subop = subop;
	}

	Expression resolve(Loc loc, Scope sc)
	{
		assert(false);
	}

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