view dmd/WithScopeSymbol.d @ 168:ceed63f310fb

stringtable, stringbuffer and freelist moved to Global
author korDen
date Thu, 30 Sep 2010 12:57:13 +0400
parents 010eb8f0e18d
children e3afd1303184
line wrap: on
line source

module dmd.WithScopeSymbol;

import dmd.common;
import dmd.ScopeDsymbol;
import dmd.WithStatement;
import dmd.Loc;
import dmd.Identifier;
import dmd.Dsymbol;

class WithScopeSymbol : ScopeDsymbol
{
    WithStatement withstate;

    this(WithStatement withstate)
	{
		this.withstate = withstate;
	}
	
    override Dsymbol search(Loc loc, Identifier ident, int flags)
	{
		// Acts as proxy to the with class declaration
		return withstate.exp.type.toDsymbol(null).search(loc, ident, 0);
	}

    override WithScopeSymbol isWithScopeSymbol() { return this; }
}