view dmd/WithScopeSymbol.d @ 157:b7b61140701d

* added all missing default cases in switch statements + Lexer.getDocComment + Lexer.combineComments
author trass3r
date Thu, 16 Sep 2010 01:34:10 +0200
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; }
}