diff trunk/src/Expressions.d @ 248:63a15b082c0c

- Removed class SpecializationType. - Changed type of member specType to Type. Added members opTok and specTok. - Changed parser of IsExpression to accomodate above changes.
author aziz
date Wed, 01 Aug 2007 14:57:05 +0000
parents 461e544ebb53
children 32d354584b28
line wrap: on
line diff
--- a/trunk/src/Expressions.d	Wed Aug 01 13:06:00 2007 +0000
+++ b/trunk/src/Expressions.d	Wed Aug 01 14:57:05 2007 +0000
@@ -590,11 +590,14 @@
 {
   Type type;
   string ident;
-  SpecializationType specType;
-  this(Type type, string ident, SpecializationType specType)
+  Token* opTok, specTok;
+  Type specType;
+  this(Type type, string ident, Token* opTok, Token* specTok, Type specType)
   {
     this.type = type;
     this.ident = ident;
+    this.opTok = opTok;
+    this.specTok = specTok;
     this.specType = specType;
   }
 }