view dmd/FileExp.d @ 157:b7b61140701d

* added all missing default cases in switch statements + Lexer.getDocComment + Lexer.combineComments
author trass3r
date Thu, 16 Sep 2010 01:34:10 +0200
parents e28b18c23469
children 438eaa11eed4
line wrap: on
line source

module dmd.FileExp;

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

class FileExp : UnaExp
{
	this(Loc loc, Expression e)
	{
		assert(false);
		super(loc, TOK.init, 0, e);
	}

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

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