aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java')
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
new file mode 100644
index 000000000..63c5104df
--- /dev/null
+++ b/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
@@ -0,0 +1,18 @@
+package dotty.tools.dotc.interfaces;
+
+/** Summary of the diagnostics emitted by a Reporter.
+ *
+ * User code should not implement this interface, but it may have to
+ * manipulate objects of this type.
+ */
+public interface ReporterResult {
+ /** Have we emitted any error ? */
+ boolean hasErrors();
+ /** Number of errors that have been emitted */
+ int errorCount();
+
+ /** Have we emitted any warning ? */
+ boolean hasWarnings();
+ /** Number of warnings that have been emitted */
+ int warningCount();
+}