view dmd/WithScopeSymbol.d @ 129:010eb8f0e18d

further work on dmd test suite
author korDen
date Sun, 05 Sep 2010 15:32:22 +0400
parents e28b18c23469
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; }
}