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.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 95f74e290..28b340eb4 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -19,8 +19,10 @@ class Compiler {
def phases: List[List[Phase]] =
List(
List(new FrontEnd),
- List(new Companions, new ElimRepeated /*, new ElimLocals*/),
+ List(new Companions),
List(new SuperAccessors),
+ // pickling and refchecks goes here
+ List(new ElimRepeated/*, new ElimLocals*/),
List(new ExtensionMethods),
List(new TailRec),
List(new PatternMatcher,