aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-10-30 23:19:59 +0100
committerMartin Odersky <odersky@gmail.com>2015-10-30 23:19:59 +0100
commit64247c1935f13645a12f21238c73727ebb607134 (patch)
tree7e28c088ef4523de4130a6c178b84267e2a6dc6a /src/dotty/tools/dotc/Compiler.scala
parentf6e454ba8ba2f1183177e1f69788bf9610512c3f (diff)
downloaddotty-64247c1935f13645a12f21238c73727ebb607134.tar.gz
dotty-64247c1935f13645a12f21238c73727ebb607134.tar.bz2
dotty-64247c1935f13645a12f21238c73727ebb607134.zip
Make a new fresh name creator for each unit
Needed to make builds deterministic.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index a36743b59..bf3dbb232 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -9,11 +9,10 @@ import Scopes._
import typer.{FrontEnd, Typer, Mode, ImportInfo, RefChecks}
import reporting.{Reporter, ConsoleReporter}
import Phases.Phase
-import dotty.tools.dotc.transform._
-import dotty.tools.dotc.transform.TreeTransforms.{TreeTransform, TreeTransformer}
-import dotty.tools.dotc.core.DenotTransformers.DenotTransformer
-import dotty.tools.dotc.core.Denotations.SingleDenotation
-
+import transform._
+import transform.TreeTransforms.{TreeTransform, TreeTransformer}
+import core.DenotTransformers.DenotTransformer
+import core.Denotations.SingleDenotation
import dotty.tools.backend.jvm.{LabelDefs, GenBCode}