aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer/FrontEnd.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-19 17:51:08 +0100
committerMartin Odersky <odersky@gmail.com>2016-11-19 17:51:08 +0100
commit8932d98c4dcb6eb840cf640bc636982236613a16 (patch)
tree71540bf8bad2dfec17b984515c6fb31861df5b50 /src/dotty/tools/dotc/typer/FrontEnd.scala
parentca8def4b01369ffbb367b9bb6531dfc1ae4e7936 (diff)
downloaddotty-8932d98c4dcb6eb840cf640bc636982236613a16.tar.gz
dotty-8932d98c4dcb6eb840cf640bc636982236613a16.tar.bz2
dotty-8932d98c4dcb6eb840cf640bc636982236613a16.zip
Recreate FreshNameCreator for each run.
Previously only the FrontEnd got a fresh FreshNameCreator for each run, the other phases used a global one instead. This means that compiling the same file several times would create different synthetic names and classes on each run.
Diffstat (limited to 'src/dotty/tools/dotc/typer/FrontEnd.scala')
-rw-r--r--src/dotty/tools/dotc/typer/FrontEnd.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/typer/FrontEnd.scala b/src/dotty/tools/dotc/typer/FrontEnd.scala
index 4f8bc55d8..c444631ae 100644
--- a/src/dotty/tools/dotc/typer/FrontEnd.scala
+++ b/src/dotty/tools/dotc/typer/FrontEnd.scala
@@ -12,7 +12,6 @@ import config.Printers.{typr, default}
import util.Stats._
import scala.util.control.NonFatal
import ast.Trees._
-import util.FreshNameCreator
class FrontEnd extends Phase {
@@ -66,7 +65,7 @@ class FrontEnd extends Phase {
override def runOn(units: List[CompilationUnit])(implicit ctx: Context): List[CompilationUnit] = {
val unitContexts = for (unit <- units) yield {
ctx.inform(s"compiling ${unit.source}")
- ctx.fresh.setCompilationUnit(unit).setFreshNames(new FreshNameCreator.Default)
+ ctx.fresh.setCompilationUnit(unit)
}
unitContexts foreach (parse(_))
record("parsedTrees", ast.Trees.ntrees)