(AnalysisConfig config)
| 66 | private final File dumpDir; |
| 67 | |
| 68 | public IRDumper(AnalysisConfig config) { |
| 69 | super(config); |
| 70 | dumpDir = new File(World.get().getOptions().getOutputDir(), IR_DIR); |
| 71 | if (!dumpDir.exists()) { |
| 72 | dumpDir.mkdirs(); |
| 73 | } |
| 74 | logger.info("Dumping IR in {}", dumpDir.getAbsolutePath()); |
| 75 | } |
| 76 | |
| 77 | @Override |
| 78 | public Void analyze(JClass jclass) { |
nothing calls this directly
no test coverage detected