view dmd/SharedStaticDtorDeclaration.d @ 181:aa70dca07cb0

ArrayExp.toCBuffer and TypeReturn.toCBuffer2
author korDen
date Mon, 18 Oct 2010 00:36:44 +0400
parents cd48cb899aee
children b0d41ff5e0df
line wrap: on
line source

module dmd.SharedStaticDtorDeclaration;

import dmd.StaticDtorDeclaration;
import dmd.Loc;
import dmd.Dsymbol;
import dmd.OutBuffer;
import dmd.HdrGenState;
import dmd.FuncDeclaration;

class SharedStaticDtorDeclaration : StaticDtorDeclaration
{
    this(Loc loc, Loc endloc)
	{
	    super(loc, endloc, "_sharedStaticDtor");
	}
	
    Dsymbol syntaxCopy(Dsymbol s)
	{
		assert(!s);
		SharedStaticDtorDeclaration sdd = new SharedStaticDtorDeclaration(loc, endloc);
		return FuncDeclaration.syntaxCopy(sdd);
	}
	
    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
	    if (!hgs.hdrgen)
		{
			buf.writestring("shared ");
			StaticDtorDeclaration.toCBuffer(buf, hgs);
		}
	}

    SharedStaticDtorDeclaration isSharedStaticDtorDeclaration() { return this; }
}