[Swift-commit] r3239 - trunk/src/org/griphyn/vdl/engine

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Wed Feb 17 14:30:17 CST 2010


Author: hategan
Date: 2010-02-17 14:30:17 -0600 (Wed, 17 Feb 2010)
New Revision: 3239

Modified:
   trunk/src/org/griphyn/vdl/engine/Karajan.java
Log:
attempt to fix multiple writers error with iterate

Modified: trunk/src/org/griphyn/vdl/engine/Karajan.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/Karajan.java	2010-02-16 04:44:01 UTC (rev 3238)
+++ trunk/src/org/griphyn/vdl/engine/Karajan.java	2010-02-17 20:30:17 UTC (rev 3239)
@@ -711,7 +711,7 @@
 		Iterator scopeIterator = innerScope.getVariableIterator();
 		while(scopeIterator.hasNext()) {
 			String v=(String) scopeIterator.next();
-			scope.addWriter(v, statementID, false);
+			scope.addWriter(v, statementID, true);
 		}
 		scope.appendStatement(iterateST);
 	}




More information about the Swift-commit mailing list