view dmd/FileInitExp.d @ 98:5c859d5fbe27

and more
author Trass3r
date Tue, 31 Aug 2010 03:53:49 +0200
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.FileInitExp;

import dmd.Expression;
import dmd.Loc;
import dmd.Scope;
import dmd.DefaultInitExp;
import dmd.StringExp;
import dmd.TOK;
import dmd.Util;
import dmd.Type;

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

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

	override Expression resolve(Loc loc, Scope sc)
	{
		//printf("FileInitExp::resolve() %.*s\n", toChars());
		string s = loc.filename ? loc.filename : sc.module_.ident.toChars();
		Expression e = new StringExp(loc, s);
		e = e.semantic(sc);
		e = e.castTo(sc, type);
		return e;
	}
}