Map.Entry me = (Map.Entry) it.next();
String className = (String) me.getKey();
byte[] bytecode = (byte[]) me.getValue();
System.out.println("*** Disassembly of class \"" + className + "\":");
try {
new Disassembler().disasm(new ByteArrayInputStream(bytecode));
System.out.flush();
} catch (IOException ex) {
throw new JaninoRuntimeException("SNO: IOException despite ByteArrayInputStream");
}
}