/**
* @return the default compilation options, with the for immediate use flag set to true.
*/
private static CompilationOptions makeDefaultCompilationOptions() {
CompilationOptions options = new CompilationOptions();
options.setForImmediateUse(true);
return options;
}