Groovy Eclipse Plugin HEADのコンパイルエラー?

org.codehaus.groovy.eclipse.model.AddErrorMarker:


...
public void run(IProgressMonitor monitor) throws CoreException {
if (e instanceof CompilationFailedException) {
CompilationFailedException compilationFailuresException = (CompilationFailedException) e;
ProcessingUnit unit = compilationFailuresException.getUnit();
unit.
for(int i =0; i < unit.getErrorCount(); ++i){
markerFromException(unit.getException(i));
}
} else {
markerFromException(e);
}
...
この、「unit.」って書きかけのコンパイルエラーはいつ通るのだろう。