comparison dmd/ddoc/Sections.d @ 105:e414dd80ebfa

moved Section
author Trass3r
date Tue, 31 Aug 2010 17:35:30 +0200
parents dmd/Section.d@10317f0c89a5
children 786ea1839396
comparison
equal deleted inserted replaced
103:e6090d1aea7c 105:e414dd80ebfa
1 module dmd.Section;
2
3 import dmd.DocComment;
4 import dmd.Scope;
5 import dmd.Dsymbol;
6 import dmd.OutBuffer;
7
8 class Section
9 {
10 string name;
11
12 string body_;
13
14 int nooutput;
15
16 void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf)
17 {
18 assert(false);
19 }
20 }