final File car = new File(moduleUnitFullPath);
// Then let's look inside the car
try (ZipFile zip = new ZipFile(car)) {
ZipEntry e = zip.getEntry(fullPath);
if (e != null && !e.isDirectory()) {
return new ZipResource(car, fullPath);
}
} catch (IOException ex) {
throw new ceylon.language.Exception(new ceylon.language.String(
"Searching for resource " + path), ex);
}