Revision: 6915
http://jython.svn.sourceforge.net/jython/?rev=6915&view=rev
Author: fwierzbicki
Date: 2009-10-27 21:30:30 +0000 (Tue, 27 Oct 2009)
Log Message:
-----------
yields member of CodeCompiler can now be private.
Modified Paths:
--------------
trunk/jython/src/org/python/compiler/CodeCompiler.java
Modified: trunk/jython/src/org/python/compiler/CodeCompiler.java
===================================================================
--- trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-10-27 03:38:41 UTC (rev 6914)
+++ trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-10-27 21:30:30 UTC (rev 6915)
@@ -119,10 +119,8 @@
private String className;
private Stack<Label> continueLabels, breakLabels;
private Stack<ExceptionHandler> exceptionHandlers;
+ private Vector<Label> yields = new Vector<Label>();
- //Module uses this, otherwise I'd make it private.
- Vector<Label> yields = new Vector<Label>();
-
/*
* break/continue finally's level. This is the lowest level in the
* exceptionHandlers which should be executed at break or continue. It is
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|