Index: src/SynTree/Declaration.h
===================================================================
--- src/SynTree/Declaration.h	(revision 6a45bd78e92f655b09a86343cc1f6bc004cd951d)
+++ src/SynTree/Declaration.h	(revision b66d14aaeea72bcdae48b4628ad29848b32691eb)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Dec 13 23:11:22 2019
-// Update Count     : 157
+// Last Modified On : Mon Jan 11 20:48:39 2021
+// Update Count     : 158
 //
 
@@ -201,5 +201,5 @@
 	typedef NamedTypeDecl Parent;
   public:
-	enum Kind { Dtype, Otype, Ftype, Ttype, NUMBER_OF_KINDS };
+	enum Kind { Dtype, DStype, Otype, Ftype, Ttype, ALtype, NUMBER_OF_KINDS };
 
 	Kind kind;
Index: src/SynTree/TypeDecl.cc
===================================================================
--- src/SynTree/TypeDecl.cc	(revision 6a45bd78e92f655b09a86343cc1f6bc004cd951d)
+++ src/SynTree/TypeDecl.cc	(revision b66d14aaeea72bcdae48b4628ad29848b32691eb)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Oct  8 18:18:55 2020
-// Update Count     : 22
+// Last Modified On : Mon Jan 11 21:26:50 2021
+// Update Count     : 23
 //
 
@@ -33,5 +33,5 @@
 
 const char * TypeDecl::typeString() const {
-	static const char * kindNames[] = { "sized data type", "sized object type", "sized function type", "sized tuple type" };
+	static const char * kindNames[] = { "data type", "sized data type", "sized object type", "sized function type", "sized tuple type", "array length type" };
 	static_assert( sizeof(kindNames)/sizeof(kindNames[0]) == TypeDecl::NUMBER_OF_KINDS, "typeString: kindNames is out of sync." );
 	assertf( kind < TypeDecl::NUMBER_OF_KINDS, "TypeDecl kind is out of bounds." );
@@ -40,5 +40,5 @@
 
 const char * TypeDecl::genTypeString() const {
-	static const char * kindNames[] = { "dtype", "otype", "ftype", "ttype" };
+	static const char * kindNames[] = { "T &", "T *", "T", "(*)", "T ...", "[T]" };
 	static_assert( sizeof(kindNames)/sizeof(kindNames[0]) == TypeDecl::NUMBER_OF_KINDS, "genTypeString: kindNames is out of sync." );
 	assertf( kind < TypeDecl::NUMBER_OF_KINDS, "TypeDecl kind is out of bounds." );
