/* 93 */ file = new File(new File(DebuggingClassWriter.debugLocation), dirs + ".asm");
/* 94 */ out = new BufferedOutputStream(new FileOutputStream(file));
/* */ try {
/* 96 */ ClassReader cr = new ClassReader(b);
/* 97 */ PrintWriter pw = new PrintWriter(new OutputStreamWriter(out));
/* 98 */ TraceClassVisitor tcv = new TraceClassVisitor(null, pw);
/* 99 */ cr.accept(tcv, false);
/* 100 */ pw.flush();
/* */ } finally {
/* 102 */ out.close();
/* */ }