view dmd/DebugSymbol.d @ 124:731ab26f07bf

testing tool added
author korDen
date Fri, 03 Sep 2010 21:39:37 +0400
parents e28b18c23469
children 010eb8f0e18d
line wrap: on
line source

module dmd.DebugSymbol;

import dmd.common;
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);
	}
}