view dmd/TemplateExp.d @ 132:c494af1dba80

Fixes for dmd 2.037
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Fri, 10 Sep 2010 19:14:09 +0100
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.TemplateExp;

import dmd.common;
import dmd.Expression;
import dmd.OutBuffer;
import dmd.Loc;
import dmd.HdrGenState;
import dmd.TemplateDeclaration;
import dmd.TOK;

class TemplateExp : Expression
{
	TemplateDeclaration td;

	this(Loc loc, TemplateDeclaration td)
	{
		super(loc, TOK.TOKtemplate, TemplateExp.sizeof);
		//printf("TemplateExp(): %s\n", td.toChars());
		this.td = td;
	}

	override void rvalue()
	{
		error("template %s has no value", toChars());
	}

	override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		buf.writestring(td.toChars());
	}
}