diff trunk/src/dil/semantic/Module.d @ 683:1ae72234db26

Implemented some methods in SemanticPass1. Renamed Symbol.ident to name. Added a constructor to Symbol. Adapted constructors of classes that inherit from Symbol. Added Alias and OverloadSet Symbol classes. Renamed idents and values to names and inits in VariablesDeclaration.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 21 Jan 2008 17:10:12 +0100
parents 6b3e397229c5
children 1564e41f454e
line wrap: on
line diff
--- a/trunk/src/dil/semantic/Module.d	Sat Jan 19 20:35:45 2008 +0100
+++ b/trunk/src/dil/semantic/Module.d	Mon Jan 21 17:10:12 2008 +0100
@@ -39,7 +39,7 @@
 
   this(string filePath, bool isLightweight = false)
   {
-    this.sid = SYM.Module;
+    super(SYM.Module, null, null);
 
     this.filePath = filePath;
     this.isLightweight = isLightweight;