summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/reporters
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-06-26 11:21:15 +0200
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-07-17 15:41:27 +0200
commit64ebac245d58221814f9c9375927e3f2e7a2d4f0 (patch)
treea64a148be77a7dd629fb1cefad955c123fc42fc8 /src/compiler/scala/tools/nsc/reporters
parent638b4c3f5b5721b68a6af97e237b4f056c2da7ed (diff)
downloadscala-64ebac245d58221814f9c9375927e3f2e7a2d4f0.tar.gz
scala-64ebac245d58221814f9c9375927e3f2e7a2d4f0.tar.bz2
scala-64ebac245d58221814f9c9375927e3f2e7a2d4f0.zip
Move more parsing hooks out of reporting.
Create a trait Parsing, which, like Reporting, factors our functionality from Global (aka. "the cake"), that is related to global aspects of configuring parsing.
Diffstat (limited to 'src/compiler/scala/tools/nsc/reporters')
-rw-r--r--src/compiler/scala/tools/nsc/reporters/Reporter.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/reporters/Reporter.scala b/src/compiler/scala/tools/nsc/reporters/Reporter.scala
index 5b576a547d..3d688efae1 100644
--- a/src/compiler/scala/tools/nsc/reporters/Reporter.scala
+++ b/src/compiler/scala/tools/nsc/reporters/Reporter.scala
@@ -13,8 +13,8 @@ import scala.reflect.internal.util._
* This describes the internal interface for issuing information, warnings and errors.
* The only abstract method in this class must be info0.
*
- * TODO: Move external clients (sbt/ide/partest) to reflect.internal.Reporter
- * This interface should be considered private to the compiler.
+ * TODO: Move external clients (sbt/ide/partest) to reflect.internal.Reporter,
+ * and remove this class.
*/
abstract class Reporter extends scala.reflect.internal.Reporter {
/** Informational messages. If `!force`, they may be suppressed. */