import net.sourceforge.phpdt.internal.compiler.CompilationResult;
/*
- * Implementors are valid compilation contexts from which we can
- * escape in case of error:
- * For example: method, type or compilation unit.
+ * Implementors are valid compilation contexts from which we can escape in case
+ * of error: For example: method, type or compilation unit.
*/
-
-
public interface ReferenceContext {
void abort(int abortLevel);
+
CompilationResult compilationResult();
+
void tagAsHavingErrors();
+
boolean hasErrors();
}