aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/showClass.scala
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/test/dotty/tools/showClass.scala')
-rw-r--r--compiler/test/dotty/tools/showClass.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/compiler/test/dotty/tools/showClass.scala b/compiler/test/dotty/tools/showClass.scala
new file mode 100644
index 000000000..012f5f59e
--- /dev/null
+++ b/compiler/test/dotty/tools/showClass.scala
@@ -0,0 +1,17 @@
+package dotty.tools
+
+import dotc.core.Decorators._
+
+object showClass extends ShowClassTests {
+
+ def main(args: Array[String]) = {
+ for (arg <- args) showPackage(ctx.requiredPackage(arg))
+// showClasses("test.SyncOps")
+// showClasses("scala.concurrent.forkjoin.LinkedTransferQueue")
+// showPackage("scala.reflect")
+// showPackage("scala.collection")
+
+ showPackage("dotty", 1)
+ showPackage("scala", 2)
+ }
+}