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

Print this page

        

*** 1221,1230 **** --- 1221,1233 ---- 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;