view dmd/DebugSymbol.d @ 72:2e2a5c3f943a

reduced warnings by adding override to the methods think this also normalizes different line endings used all over the place
author Trass3r
date Sat, 28 Aug 2010 16:19:48 +0200
parents 427f8aa74d28
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);
	}
}