in src/main/java/com/intellij/rt/debugger/agent/CollectionBreakpointInstrumentor.java [135:149]
private static void writeDebugInfo(String className, byte[] bytes) {
try {
System.out.println("instrumented: " + className);
FileOutputStream stream = new FileOutputStream("instrumented_" + className.replaceAll("/", "_") + ".class");
try {
stream.write(bytes);
}
finally {
stream.close();
}
}
catch (IOException e) {
e.printStackTrace();
}
}