diff dmd/DocComment.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children e28b18c23469
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/DocComment.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,50 @@
+module dmd.DocComment;
+
+import dmd.Array;
+import dmd.Section;
+import dmd.Macro;
+import dmd.Escape;
+import dmd.Scope;
+import dmd.Dsymbol;
+import dmd.OutBuffer;
+
+class DocComment
+{
+    Array sections;		// Section*[]
+
+    Section summary;
+    Section copyright;
+    Section macros;
+    Macro** pmacrotable;
+    Escape** pescapetable;
+
+    this()
+	{
+		assert(false);
+	}
+
+    static DocComment parse(Scope sc, Dsymbol s, ubyte* comment)
+	{
+		assert(false);
+	}
+	
+    static void parseMacros(Escape** pescapetable, Macro** pmacrotable, ubyte* m, uint mlen)
+	{
+		assert(false);
+	}
+	
+    static void parseEscapes(Escape** pescapetable, ubyte* textstart, uint textlen)
+	{
+		assert(false);
+	}
+
+    void parseSections(ubyte* comment)
+	{
+		assert(false);
+	}
+	
+    void writeSections(Scope sc, Dsymbol s, OutBuffer buf)
+	{
+		assert(false);
+	}
+}
\ No newline at end of file