jdk/src/share/classes/sun/tools/tree/FinallyStatement.java
changeset 25522 10d789df41bb
parent 22567 5816a47fa4dd
child 25799 1afc4675dc75
equal deleted inserted replaced
25521:80551dd1d902 25522:10d789df41bb
   285             }
   285             }
   286 
   286 
   287             // allocate space for the exception and return address
   287             // allocate space for the exception and return address
   288             f1 = new LocalMember(where, thisClass, 0, Type.tObject, null);
   288             f1 = new LocalMember(where, thisClass, 0, Type.tObject, null);
   289             f2 = new LocalMember(where, thisClass, 0, Type.tInt, null);
   289             f2 = new LocalMember(where, thisClass, 0, Type.tInt, null);
   290             num1 = new Integer(ctx.declare(env, f1));
   290             num1 = ctx.declare(env, f1);
   291             num2 = new Integer(ctx.declare(env, f2));
   291             num2 = ctx.declare(env, f2);
   292         }
   292         }
   293 
   293 
   294         TryData td = new TryData();
   294         TryData td = new TryData();
   295         td.add(null);
   295         td.add(null);
   296 
   296