view dmd/Section.d @ 161:584dc990e12f

type fixed
author korDen
date Mon, 20 Sep 2010 01:19:36 +0400
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.Section;

import dmd.common;
import dmd.DocComment;
import dmd.Scope;
import dmd.Dsymbol;
import dmd.OutBuffer;

class Section
{
    ubyte* name;
    uint namelen;

    ubyte* body_;
    uint bodylen;

    int nooutput;

    void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf)
	{
		assert(false);
	}
}