aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java')
-rw-r--r--interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java b/interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java
new file mode 100644
index 000000000..f4c80c0cf
--- /dev/null
+++ b/interfaces/src/dotty/tools/dotc/interfaces/SimpleReporter.java
@@ -0,0 +1,15 @@
+package dotty.tools.dotc.interfaces;
+
+/** Report errors, warnings and info messages during the compilation process
+ *
+ * You should implement this interface if you want to handle the diagnostics
+ * returned by the compiler yourself.
+ *
+ * See the method `process` of `dotty.tools.dotc.Driver` for more information.
+ */
+public interface SimpleReporter {
+ /** Report a diagnostic.
+ * @param diag the diagnostic message to report
+ */
+ void report(Diagnostic diag);
+}