view dmd/FileInitExp.d @ 55:8c2c7b7579f8

Expression.toMangleBuffer Expression.toDelegate Expression.scanForNestedRef TypeStruct.deduceType TypeStruct.toChars DefaultInitExp wrong TOK bug fixed
author korDen
date Sat, 21 Aug 2010 13:28:16 +0400
parents 460959608115
children 2e2a5c3f943a
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);
	}

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

	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;
	}
}