view dmd/TemplateMixin.d @ 0:10317f0c89a5

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

module dmd.TemplateMixin;

import dmd.TemplateInstance;
import dmd.Array;
import dmd.Type;
import dmd.ArrayTypes;
import dmd.Loc;
import dmd.Identifier;
import dmd.Dsymbol;
import dmd.Scope;
import dmd.OutBuffer;
import dmd.HdrGenState;

class TemplateMixin : TemplateInstance
{
    Array idents;
    Type tqual;

    this(Loc loc, Identifier ident, Type tqual, Array idents, Objects tiargs)
	{
		assert(false);
		super(loc, ident);
	}
	
    Dsymbol syntaxCopy(Dsymbol s)
	{
		assert(false);
	}
	
    void semantic(Scope sc)
	{
		assert(false);
	}
	
    void semantic2(Scope sc)
	{
		assert(false);
	}
	
    void semantic3(Scope sc)
	{
		assert(false);
	}
	
    void inlineScan()
	{
		assert(false);
	}
	
    string kind()
	{
		assert(false);
	}
	
    bool oneMember(Dsymbol* ps)
	{
		assert(false);
	}
	
    bool hasPointers()
	{
		assert(false);
	}
	
    string toChars()
	{
		assert(false);
	}
	
    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}

    void toObjFile(int multiobj)			// compile to .obj file
	{
		assert(false);
	}

    TemplateMixin isTemplateMixin() { return this; }
}