Parser: issue better error msgs for missing closing tokens.
[dil.git] / src / cmd / DDocHTML.d
blob0dd4350a82ec645b7b959bd9d4e8c1d274ec7486
1 /// Author: Aziz Köksal
2 /// License: GPL3
3 /// $(Maturity high)
4 module cmd.DDocHTML;
6 import cmd.Highlight,
7 cmd.DDocEmitter;
8 import dil.doc.Macro;
9 import dil.semantic.Module;
10 import common;
12 /// Traverses the syntax tree and writes DDoc macros to a string buffer.
13 class DDocHTMLEmitter : DDocEmitter
15 /// Constructs a DDocHTMLEmitter object.
16 this(Module modul, MacroTable mtable, bool includeUndocumented,
17 TokenHighlighter tokenHL)
19 super(modul, mtable, includeUndocumented, tokenHL);