Index: src/SynTree/Statement.cc
===================================================================
--- src/SynTree/Statement.cc	(revision 0608e007303c4e31c9edfc18e6aead6e4c2a409d)
+++ src/SynTree/Statement.cc	(revision 8633485b53ccf10786bcb6ce270cac069166b0d7)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jan 10 14:20:47 2020
-// Update Count     : 70
+// Last Modified By : Andrew Beach
+// Last Modified On : Mon Jan 20 16:03:00 2020
+// Update Count     : 71
 //
 
@@ -101,5 +101,7 @@
 
 
-const char * BranchStmt::brType[] = { "Goto", "Break", "Continue" };
+const char * BranchStmt::brType[] = {
+	"Goto", "Break", "Continue", "Fall Through", "Fall Through Default",
+};
 
 BranchStmt::BranchStmt( Label target, Type type ) throw ( SemanticErrorException ) :
@@ -119,4 +121,5 @@
 
 void BranchStmt::print( std::ostream & os, Indenter indent ) const {
+	assert(type < 5);
 	os << "Branch (" << brType[type] << ")" << endl ;
 	if ( target != "" ) os << indent+1 << "with target: " << target << endl;
