diff trunk/src/dil/TypeSystem.d @ 512:112c17300069

Added module dil.TypeSystem.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 13 Dec 2007 23:04:50 +0100
parents
children 812f497b20dc
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/dil/TypeSystem.d	Thu Dec 13 23:04:50 2007 +0100
@@ -0,0 +1,37 @@
+/++
+  Author: Aziz Köksal
+  License: GPL3
++/
+module dil.TypeSystem;
+
+import dil.Symbol;
+
+abstract class Type : Symbol
+{
+  Type next;
+}
+
+class TypeBasic : Type
+{
+
+}
+
+class TypeDArray : Type
+{
+
+}
+
+class TypeAArray : Type
+{
+
+}
+
+class TypePointer : Type
+{
+
+}
+
+class TypeReference : Type
+{
+
+}