Index: src/SynTree/Statement.h
===================================================================
--- src/SynTree/Statement.h	(revision cc32d8399627ee613fb6842043aca12a1038ffcb)
+++ src/SynTree/Statement.h	(revision 6d6cf5a51aca7952ac2c779153dfa7fab72718ea)
@@ -220,8 +220,9 @@
 	Expression *condition;
 	Statement *body;
+	std::list<Statement *> initialization;
 	bool isDoWhile;
 
 	WhileStmt( Expression *condition,
-	       Statement *body, bool isDoWhile = false );
+	       Statement *body, std::list<Statement *> & initialization, bool isDoWhile = false );
 	WhileStmt( const WhileStmt &other );
 	virtual ~WhileStmt();
