The directory contains serialized baked CajoledModules, stored one per file. Filenames are hex-encoded sha1 key of the uncajoled source text.
There's also a file index.dat that contains a serialized map of URI -> key.
168169170171172173174175176177178179
return info; } private List<List<String>> getUrlGroups() { StaticPrecajoleMap spm = StaticPrecajoleMap.getInstance(); List<List<String>> urlGroups = spm.getUrlGroups(); // sort the urlGroups into a friendly order for (List<String> urls : urlGroups) { Collections.sort(urls); }