nashorn/src/jdk/nashorn/internal/codegen/CodeGenerator.java
changeset 16252 3bfe9b68a0fa
parent 16240 e1468b33e201
child 16262 75513555e603
--- a/nashorn/src/jdk/nashorn/internal/codegen/CodeGenerator.java	Wed Feb 20 16:43:21 2013 +0100
+++ b/nashorn/src/jdk/nashorn/internal/codegen/CodeGenerator.java	Thu Feb 21 16:57:21 2013 +0100
@@ -850,7 +850,7 @@
              * Determine if function is varargs and consequently variables have to
              * be in the scope.
              */
-            final boolean varsInScope = function.varsInScope();
+            final boolean varsInScope = function.allVarsInScope();
 
             // TODO for LET we can do better: if *block* does not contain any eval/with, we don't need its vars in scope.
 
@@ -2040,7 +2040,6 @@
         }
 
         final Symbol varSymbol = varNode.getSymbol();
-
         assert varSymbol != null : "variable node " + varNode + " requires a symbol";
 
         assert method != null;
@@ -2058,7 +2057,7 @@
             }
             final IdentNode identNode = varNode.getName();
             final Type type = identNode.getType();
-            if(varSymbol.isFastScope(getCurrentFunctionNode())) {
+            if (varSymbol.isFastScope(getCurrentFunctionNode())) {
                 storeFastScopeVar(type, varSymbol, flags);
             } else {
                 method.dynamicSet(type, identNode.getName(), flags);