MCPcopy Create free account
hub / github.com/LFYSec/MScan / IRDumper

Method IRDumper

src/main/java/pascal/taie/analysis/misc/IRDumper.java:68–75  ·  view source on GitHub ↗
(AnalysisConfig config)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
getOutputDirMethod · 0.80
getOptionsMethod · 0.65

Tested by

no test coverage detected