aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Run.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-31 17:20:02 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-04-08 16:55:56 +0200
commitdd5341106d9b57a99316a26a1f0c7e195b6debf1 (patch)
tree2a555b335e2d661a828014e35e91e308fec4798e /src/dotty/tools/dotc/Run.scala
parenteb3df0db4a57d89c0d7370a9180742273db166b2 (diff)
downloaddotty-dd5341106d9b57a99316a26a1f0c7e195b6debf1.tar.gz
dotty-dd5341106d9b57a99316a26a1f0c7e195b6debf1.tar.bz2
dotty-dd5341106d9b57a99316a26a1f0c7e195b6debf1.zip
Fleshed out Splitter phase
Implemented splitting operations As a side effect, this contains a test ruling out structural term member dispatch. Tests 0586 and 0625 which used structural dispatch got moved to neg.
Diffstat (limited to 'src/dotty/tools/dotc/Run.scala')
-rw-r--r--src/dotty/tools/dotc/Run.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/Run.scala b/src/dotty/tools/dotc/Run.scala
index 264373baf..247fa4336 100644
--- a/src/dotty/tools/dotc/Run.scala
+++ b/src/dotty/tools/dotc/Run.scala
@@ -51,7 +51,7 @@ class Run(comp: Compiler)(implicit ctx: Context) {
private def printTree(ctx: Context) = {
val unit = ctx.compilationUnit
- println(s"result of $unit after ${ctx.phase}:")
+ println(s"result of $unit after ${ctx.phase.prev}:")
println(unit.tpdTree.show(ctx))
}