view dmd/DotTemplateExp.d @ 114:e28b18c23469

added a module dmd.common for commonly used stuff it currently holds code for consistency checking of predefined versions also added a VisualD project file
author Trass3r
date Wed, 01 Sep 2010 18:21:58 +0200
parents 2e2a5c3f943a
children e3afd1303184
line wrap: on
line source

module dmd.DotTemplateExp;

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

import dmd.expression.Util;

class DotTemplateExp : UnaExp
{
	TemplateDeclaration td;

	this(Loc loc, Expression e, TemplateDeclaration td)
	{
		super(loc, TOK.TOKdottd, this.sizeof, e);
		this.td = td;
	}

	override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
	    expToCBuffer(buf, hgs, e1, PREC.PREC_primary);
	    buf.writeByte('.');
	    buf.writestring(td.toChars());
	}
}