view dmd/Section.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents e3afd1303184
children
line wrap: on
line source

module dmd.Section;

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

import dmd.TObject;

class Section : TObject
{
    ubyte* name;
    uint namelen;

    ubyte* body_;
    uint bodylen;

    int nooutput;

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