public StandardGeneratorContext getGeneratorContext() {
return null;
}
};
JProgram jprogram = new JProgram(compilerContext.getMinimalRebuildCache());
JsProgram jsProgram = new JsProgram();
UnifyAst unifyAst = new UnifyAst(logger, compilerContext, jprogram, jsProgram, rpo);
unifyAst.buildEverything();
// Compute all super type/sub type info
jprogram.typeOracle.computeBeforeAST(StandardTypes.createFrom(jprogram),
jprogram.getDeclaredTypes(), jprogram.getModuleDeclaredTypes());
// (3) Perform Java AST normalizations.
FixAssignmentsToUnboxOrCast.exec(jprogram);
/*