aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-11-08 18:45:17 +0100
committerMartin Odersky <odersky@gmail.com>2014-11-09 19:09:52 +0100
commit60803fa016987e05ebb2e2c80ba84d04aafc6ef3 (patch)
tree23ec2f601186129a6359c90dda8b21ebe91e0edd /src/dotty/tools/dotc/Compiler.scala
parentb07c30b09851334c40298725daa5503e97ae305a (diff)
downloaddotty-60803fa016987e05ebb2e2c80ba84d04aafc6ef3.tar.gz
dotty-60803fa016987e05ebb2e2c80ba84d04aafc6ef3.tar.bz2
dotty-60803fa016987e05ebb2e2c80ba84d04aafc6ef3.zip
Merge memoize with miniphases following it into one group.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 9da00f38a..ae5d5c100 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -51,12 +51,12 @@ class Compiler {
List(new ElimByName,
new InterceptedMethods,
new Literalize,
- new Getters),
- List(new ResolveSuper),
+ new Getters,
+ new ResolveSuper),
List(new Erasure),
List(new Mixin),
- List(new Memoize),
- List(new CapturedVars,
+ List(new Memoize,
+ new CapturedVars,
new Constructors),
List(new LambdaLift,
new Flatten,