aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/FrontEnd.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-18 17:19:59 +0100
committerMartin Odersky <odersky@gmail.com>2016-11-18 17:19:59 +0100
commit9bada400b36834e92484e416a5b9b41b10cbd5a5 (patch)
treee7d7af11cbf936895e43bc4855cec842c65c2b3e /src/dotty/tools/dotc/typer/FrontEnd.scala
parent5979e36d7c206beb6abf53302462091fad834c76 (diff)
downloaddotty-9bada400b36834e92484e416a5b9b41b10cbd5a5.tar.gz
dotty-9bada400b36834e92484e416a5b9b41b10cbd5a5.tar.bz2
dotty-9bada400b36834e92484e416a5b9b41b10cbd5a5.zip
More extensive stats about generated trees
Diffstat (limited to 'src/dotty/tools/dotc/typer/FrontEnd.scala')
-rw-r--r--src/dotty/tools/dotc/typer/FrontEnd.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/typer/FrontEnd.scala b/src/dotty/tools/dotc/typer/FrontEnd.scala
index e24d1f25d..4f8bc55d8 100644
--- a/src/dotty/tools/dotc/typer/FrontEnd.scala
+++ b/src/dotty/tools/dotc/typer/FrontEnd.scala
@@ -49,8 +49,8 @@ class FrontEnd extends Phase {
val unit = ctx.compilationUnit
unit.tpdTree = ctx.typer.typedExpr(unit.untpdTree)
typr.println("typed: " + unit.source)
- record("retainedUntypedTrees", unit.untpdTree.treeSize)
- record("retainedTypedTrees", unit.tpdTree.treeSize)
+ record("retained untyped trees", unit.untpdTree.treeSize)
+ record("retained typed trees after typer", unit.tpdTree.treeSize)
}
private def firstTopLevelDef(trees: List[tpd.Tree])(implicit ctx: Context): Symbol = trees match {
@@ -72,7 +72,7 @@ class FrontEnd extends Phase {
record("parsedTrees", ast.Trees.ntrees)
unitContexts foreach (enterSyms(_))
unitContexts foreach (typeCheck(_))
- record("totalTrees", ast.Trees.ntrees)
+ record("total trees after typer", ast.Trees.ntrees)
unitContexts.map(_.compilationUnit).filterNot(discardAfterTyper)
}