src/share/classes/com/sun/tools/javac/code/Symbol.java

Print this page

        

@@ -1221,10 +1221,13 @@
         public Code code = null;
 
         /** The extra (synthetic/mandated) parameters of the method. */
         public List<VarSymbol> extraParams = List.nil();
 
+        /** The captured local variables in an anonymous class */
+        public List<VarSymbol> capturedLocals = List.nil();
+
         /** The parameters of the method. */
         public List<VarSymbol> params = null;
 
         /** The names of the parameters */
         public List<Name> savedParameterNames;