in src/main/java/org/apache/sling/scripting/java/impl/CompilationUnit.java [74:81]
public String getFileName() {
final int idx = this.sourceFile.lastIndexOf('/');
if (idx == -1) {
return this.sourceFile;
} else {
return this.sourceFile.substring(idx + 1);
}
}