diff trunk/src/Types.d @ 134:a31aa0d6dd5e

- Added class UndefinedType. Returning it in parseBasicType() when no token matched the basic type list.
author aziz
date Tue, 10 Jul 2007 21:20:05 +0000
parents 0467f01ed524
children 145e0d68ec95
line wrap: on
line diff
--- a/trunk/src/Types.d	Tue Jul 10 21:10:04 2007 +0000
+++ b/trunk/src/Types.d	Tue Jul 10 21:20:05 2007 +0000
@@ -86,6 +86,14 @@
   }
 }
 
+class UndefinedType : Type
+{
+  this()
+  {
+    super(TOK.Invalid, null);
+  }
+}
+
 class IdentifierType : Type
 {
   string[] idents;