diff trunk/src/dil/semantic/Module.d @ 680:6b3e397229c5

Renamed Statements, Declarations and EnumMember. Statements -> CompoundStatement. Declarations -> CompoundDeclaration. EnumMember -> EnumMemberDeclaration.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 18 Jan 2008 23:59:41 +0100
parents 64fec49651cf
children 1ae72234db26
line wrap: on
line diff
--- a/trunk/src/dil/semantic/Module.d	Fri Jan 18 23:40:12 2008 +0100
+++ b/trunk/src/dil/semantic/Module.d	Fri Jan 18 23:59:41 2008 +0100
@@ -28,7 +28,7 @@
   string packageName;
   string moduleName;
 
-  Declarations root; /// The root of the AST.
+  CompoundDeclaration root; /// The root of the AST.
   ImportDeclaration[] imports;
   ModuleDeclaration moduleDecl;
   private Parser parser;