aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 2ba75c56b..457238da4 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -20,9 +20,14 @@ class Compiler {
def phases: List[List[Phase]] =
List(
List(new FrontEnd),
- List(new LazyValsCreateCompanionObjects, new TailRec), //force separataion between lazyVals and LVCreateCO
- List(new PatternMatcher, new LazyValTranformContext().transformer,
- new Splitter, new TypeTestsCasts, new InterceptedMethods),
+ List(new LazyValsCreateCompanionObjects,
+ new TailRec), //force separataion between lazyVals and LVCreateCO
+ List(new PatternMatcher,
+ new LazyValTranformContext().transformer,
+ new Splitter),
+ List(new Nullarify,
+ new TypeTestsCasts,
+ new InterceptedMethods),
List(new Erasure),
List(new UncurryTreeTransform)
)