view dmd/LineInitExp.d @ 90:39648eb578f6

more Expressions work
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 20:27:56 +0100
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.LineInitExp;

import dmd.Expression;
import dmd.Loc;
import dmd.Scope;
import dmd.DefaultInitExp;
import dmd.IntegerExp;
import dmd.TOK;
import dmd.Type;

class LineInitExp : DefaultInitExp
{
	this(Loc loc)
	{
		super(loc, TOK.TOKline, this.sizeof);
	}

	override Expression semantic(Scope sc)
	{
		type = Type.tint32;
		return this;
	}

	override Expression resolve(Loc loc, Scope sc)
	{
		Expression e = new IntegerExp(loc, loc.linnum, Type.tint32);
		e = e.castTo(sc, type);
		return e;
	}
}