view dmd/DebugSymbol.d @ 92:0c891ec48515

Fixed another bug related to copy ctor
author korDen
date Mon, 30 Aug 2010 23:43:38 +0400
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.DebugSymbol;

import dmd.Dsymbol;
import dmd.Identifier;
import dmd.Loc;
import dmd.Scope;
import dmd.ScopeDsymbol;
import dmd.HdrGenState;
import dmd.OutBuffer;

class DebugSymbol : Dsymbol
{
    uint level;

    this(Loc loc, Identifier ident)
	{
		assert(false);
	}

    this(Loc loc, uint level)
	{
		assert(false);
	}

    override Dsymbol syntaxCopy(Dsymbol s)
	{
		assert(false);
	}

    override bool addMember(Scope sc, ScopeDsymbol s, bool memnum)
	{
		assert(false);
	}
	
    override void semantic(Scope sc)
	{
		assert(false);
	}
	
    override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}
	
    override string kind()
	{
		assert(false);
	}
}