view dmd/CompileDeclaration.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 f2413c9183d1
line wrap: on
line source

module dmd.CompileDeclaration;

import dmd.AttribDeclaration;
import dmd.Expression;
import dmd.ScopeDsymbol;
import dmd.Dsymbol;
import dmd.Loc;
import dmd.Scope;
import dmd.OutBuffer;
import dmd.HdrGenState;

// Mixin declarations

class CompileDeclaration : AttribDeclaration
{
    Expression exp;

    ScopeDsymbol *sd;
    int compiled;

    this(Loc loc, Expression exp)
	{
		assert(false);
		super(null);
	}
	
    Dsymbol syntaxCopy(Dsymbol s)
	{
		assert(false);
	}
	
    bool addMember(Scope sc, ScopeDsymbol sd, int memnum)
	{
		assert(false);
	}
	
    void compileIt(Scope sc)
	{
		assert(false);
	}
	
    void semantic(Scope sc)
	{
		assert(false);
	}
	
    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}
}