Index: src/SynTree/ArrayType.cc
===================================================================
--- src/SynTree/ArrayType.cc	(revision 44b5ca043a6e8e4574929a092ba5d3004b59264d)
+++ src/SynTree/ArrayType.cc	(revision 59db6897195376150fdc27245cae3d51cc615cd4)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jun  4 21:16:46 2015
-// Update Count     : 7
+// Last Modified On : Sat Jun  6 14:11:48 2015
+// Update Count     : 9
 //
 
@@ -50,4 +50,5 @@
 	} // if
 	if ( dimension ) {
+		os << "with dimension of ";
 		dimension->print( os, indent );
 	} // if
Index: src/SynTree/BasicType.cc
===================================================================
--- src/SynTree/BasicType.cc	(revision 44b5ca043a6e8e4574929a092ba5d3004b59264d)
+++ src/SynTree/BasicType.cc	(revision 59db6897195376150fdc27245cae3d51cc615cd4)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 07:55:16 2015
-// Update Count     : 1
+// Last Modified On : Sat Jun  6 11:52:43 2015
+// Update Count     : 2
 //
 
Index: src/SynTree/Constant.cc
===================================================================
--- src/SynTree/Constant.cc	(revision 44b5ca043a6e8e4574929a092ba5d3004b59264d)
+++ src/SynTree/Constant.cc	(revision 59db6897195376150fdc27245cae3d51cc615cd4)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 08:13:25 2015
-// Update Count     : 1
+// Last Modified On : Sat Jun  6 12:17:22 2015
+// Update Count     : 2
 //
 
@@ -20,5 +20,5 @@
 #include "Type.h"
 
-Constant::Constant( Type *_type, std::string _value ) : type(_type), value(_value) {}
+Constant::Constant( Type *type_, std::string value_ ) : type( type_ ), value( value_ ) {}
 
 Constant::~Constant() {}
Index: src/SynTree/Expression.cc
===================================================================
--- src/SynTree/Expression.cc	(revision 44b5ca043a6e8e4574929a092ba5d3004b59264d)
+++ src/SynTree/Expression.cc	(revision 59db6897195376150fdc27245cae3d51cc615cd4)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jun  5 07:51:09 2015
-// Update Count     : 11
+// Last Modified On : Sat Jun  6 14:13:39 2015
+// Update Count     : 14
 //
 
@@ -50,5 +50,5 @@
 }
 
-void Expression::print(std::ostream &os, int indent) const {
+void Expression::print( std::ostream &os, int indent ) const {
 	if ( env ) {
 		os << std::string( indent, ' ' ) << "with environment:" << std::endl;
@@ -72,6 +72,5 @@
 
 void ConstantExpr::print( std::ostream &os, int indent ) const {
-	os << std::endl;
-	os << std::string( indent, ' ' ) << "dimension of constant expression: " ;
+	os << std::string( indent, ' ' ) << "constant expression: " ;
 	constant.print( os );
 	Expression::print( os, indent );
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 44b5ca043a6e8e4574929a092ba5d3004b59264d)
+++ src/SynTree/Type.h	(revision 59db6897195376150fdc27245cae3d51cc615cd4)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 11:01:40 2015
-// Update Count     : 1
+// Last Modified On : Sat Jun  6 14:12:14 2015
+// Update Count     : 2
 //
 
@@ -110,5 +110,5 @@
 	};  
 
-	static const char *typeNames[];			// string names for basic types, MUST MATCH with Kind
+	static const char *typeNames[];						// string names for basic types, MUST MATCH with Kind
 
 	BasicType( const Type::Qualifiers &tq, Kind bt );
