aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting/StoreReporter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/reporting/StoreReporter.scala')
-rw-r--r--src/dotty/tools/dotc/reporting/StoreReporter.scala22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/dotty/tools/dotc/reporting/StoreReporter.scala b/src/dotty/tools/dotc/reporting/StoreReporter.scala
index 6818825f7..54daf2b6b 100644
--- a/src/dotty/tools/dotc/reporting/StoreReporter.scala
+++ b/src/dotty/tools/dotc/reporting/StoreReporter.scala
@@ -3,26 +3,20 @@ package dotc
package reporting
import core.Contexts.Context
-import scala.collection.mutable
-import util.SourcePosition
-import Reporter.Severity.{Value => Severity}
+import collection.mutable
+import Reporter.Diagnostic
/**
* This class implements a Reporter that stores all messages
*/
class StoreReporter(ctx: Context) extends Reporter(ctx) {
- class Info(val msg: String, val severity: Severity, val pos: SourcePosition) {
- override def toString() = "pos: " + pos + " " + msg + " " + severity
- }
- val infos = new mutable.LinkedHashSet[Info]
+ val infos = new mutable.ListBuffer[Diagnostic]
- protected def report(msg: String, severity: Severity, pos: SourcePosition)(implicit ctx: Context): Unit = {
- infos += new Info(msg, severity, pos)
- }
+ protected def doReport(d: Diagnostic)(implicit ctx: Context): Unit =
+ infos += d
+
+ def replay(implicit ctx: Context) =
+ infos foreach ctx.reporter.report
- override def reset() {
- super.reset()
- infos.clear()
- }
}