diff trunk/src/dil/Types.d @ 488:cfb3805768b6

Added DotExpression and DotType.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Dec 2007 21:42:24 +0100
parents 38fccd2640eb
children a7291d3ee9d7
line wrap: on
line diff
--- a/trunk/src/dil/Types.d	Sat Dec 01 20:20:44 2007 +0100
+++ b/trunk/src/dil/Types.d	Sat Dec 01 21:42:24 2007 +0100
@@ -309,6 +309,7 @@
   Pointer,
   CFuncPointer,
   Array,
+  Dot,
   DotList,
   Identifier,
   Typeof,
@@ -378,6 +379,15 @@
   }
 }
 
+class DotType : Type
+{
+  this()
+  {
+    super(TID.Dot);
+    mixin(set_kind);
+  }
+}
+
 class TypeofType : Type
 {
   Expression e;