diff trunk/src/dil/doc/Macro.d @ 786:3b34f6a95a27

Added and revised documenation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 24 Feb 2008 02:41:11 +0100
parents 5e3ef1b2011c
children
line wrap: on
line diff
--- a/trunk/src/dil/doc/Macro.d	Sat Feb 23 21:15:56 2008 +0100
+++ b/trunk/src/dil/doc/Macro.d	Sun Feb 24 02:41:11 2008 +0100
@@ -30,9 +30,11 @@
 /// Macro definitions in the current table override the ones in the parent tables.
 class MacroTable
 {
+  /// The parent in the hierarchy. Or null if this is the root.
   MacroTable parent;
-  Macro[string] table;
+  Macro[string] table; /// The associative array that holds the macro definitions.
 
+  /// Constructs a MacroTable instance.
   this(MacroTable parent = null)
   {
     this.parent = parent;