diff trunk/src/dil/semantic/Types.d @ 692:d33895f679eb

Tidied up the class Scope a bit.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 22 Jan 2008 18:32:39 +0100
parents 839c0c61af2b
children 8e252b7c1459
line wrap: on
line diff
--- a/trunk/src/dil/semantic/Types.d	Tue Jan 22 18:05:37 2008 +0100
+++ b/trunk/src/dil/semantic/Types.d	Tue Jan 22 18:32:39 2008 +0100
@@ -50,6 +50,7 @@
   }
 }
 
+/// Dynamic array.
 class TypeDArray : Type
 {
   this(Type next)
@@ -58,6 +59,7 @@
   }
 }
 
+/// Associative array.
 class TypeAArray : Type
 {
   Type keyType;
@@ -68,6 +70,7 @@
   }
 }
 
+/// Static array.
 class TypeSArray : Type
 {
   size_t dimension;