private String getModuleOutputPath()

in src/main/java/com/intellij/compiler/impl/InternalCompileDriver.java [515:518]


    private String getModuleOutputPath(Module module, boolean inTestSourceContent) {
        Map<Module, String> map = inTestSourceContent ? myModuleTestOutputPaths : myModuleOutputPaths;
        return map.computeIfAbsent(module, k -> CompilerPaths.getModuleOutputPath(module, inTestSourceContent));
    }