aboutsummaryrefslogtreecommitdiff
path: root/test/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-09-23 12:26:55 +0200
committerMartin Odersky <odersky@gmail.com>2013-09-23 12:28:05 +0200
commitc90e09fc7bd79c3bf9c95ce87f3c11cb3dfd4405 (patch)
tree85ca8768f5d4544bf6c5940393a18abaf90b4a57 /test/test
parent625d7ad00d43fb77df55c1ace30db1e6ccdf6179 (diff)
downloaddotty-c90e09fc7bd79c3bf9c95ce87f3c11cb3dfd4405.tar.gz
dotty-c90e09fc7bd79c3bf9c95ce87f3c11cb3dfd4405.tar.bz2
dotty-c90e09fc7bd79c3bf9c95ce87f3c11cb3dfd4405.zip
Changed Throwing reporting scheme.
Changed ThrowingReporter to use an underlying reporter for issuing messages below ERROR. Made ThrowingReporters the default in initialContext.
Diffstat (limited to 'test/test')
-rw-r--r--test/test/DottyTest.scala3
-rw-r--r--test/test/showClass.scala4
2 files changed, 5 insertions, 2 deletions
diff --git a/test/test/DottyTest.scala b/test/test/DottyTest.scala
index 98da7bf0e..8d48bd58e 100644
--- a/test/test/DottyTest.scala
+++ b/test/test/DottyTest.scala
@@ -6,6 +6,7 @@ import dotty.tools.dotc.core.Symbols._
import dotty.tools.dotc.core.Flags._
import Types._, Symbols._, Decorators._
import dotty.tools.dotc.printing.Texts._
+import dotty.tools.dotc.reporting.ConsoleReporter
import dotty.tools.dotc.core.Decorators._
class DottyTest {
@@ -24,6 +25,8 @@ class DottyTest {
.withSetting(printtypes, true)
.withSetting(pageWidth, 90)
.withSetting(log, List("<some"))
+ // .withTyperState(new TyperState(new ConsoleReporter()(base.initialCtx)))
+
// .withSetting(uniqid, true)
println(ctx.settings)
base.definitions.init()
diff --git a/test/test/showClass.scala b/test/test/showClass.scala
index c62ec6867..fc7057780 100644
--- a/test/test/showClass.scala
+++ b/test/test/showClass.scala
@@ -8,11 +8,11 @@ object showClass extends ShowClassTests {
def main(args: Array[String]) = {
for (arg <- args) showPackage(ctx.requiredPackage(arg))
// showClasses("test.SyncOps")
-// showClasses("scala.reflect.runtime.SynchronizedOps")
+// showClasses("scala.concurrent.forkjoin.LinkedTransferQueue")
// showPackage("scala.reflect")
// showPackage("scala.collection")
-// showPackage("dotty")
+ showPackage("dotty")
showPackage("scala")
println(s"${Symbols.stubs.length} stubs")
println(Symbols.stubs mkString " ")