diff trunk/src/dil/semantic/Types.d @ 615:a05457530ac2

Added member ident to class Symbol. Commented out inheritance of dil.semantic.Symbol by class dil.semantic.Type.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 08 Jan 2008 22:15:59 +0100
parents 041eae272362
children 0749f30ef2d0
line wrap: on
line diff
--- a/trunk/src/dil/semantic/Types.d	Tue Jan 08 21:28:53 2008 +0100
+++ b/trunk/src/dil/semantic/Types.d	Tue Jan 08 22:15:59 2008 +0100
@@ -9,7 +9,7 @@
 import dil.lexer.Identifier;
 import dil.CompilerInfo;
 
-abstract class Type : Symbol
+abstract class Type/* : Symbol*/
 {
   Type next;
   TYP tid; /// The ID of the type.
@@ -18,7 +18,7 @@
 
   this(Type next, TYP tid)
   {
-    this.sid = SYM.Type;
+//     this.sid = SYM.Type;
 
     this.next = next;
     this.tid = tid;