aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-03-10 13:39:21 +0100
committerMartin Odersky <odersky@gmail.com>2015-03-10 13:39:21 +0100
commit8783026bc399929331a5ec5d24abbb91c27a73b0 (patch)
treebfabf2b2dd174c8d68c4fd30410dcf699ae0224d /src/dotty/tools/dotc/Compiler.scala
parent60312a11c23b5144adf0237cc7238e68296738e4 (diff)
downloaddotty-8783026bc399929331a5ec5d24abbb91c27a73b0.tar.gz
dotty-8783026bc399929331a5ec5d24abbb91c27a73b0.tar.bz2
dotty-8783026bc399929331a5ec5d24abbb91c27a73b0.zip
Move ElimByName as late as possible.
ElimByName might be merged with erasure, so we can alreayd move it as close a pssoble to it. Verified that it can't be moved beyong ResolevSuper, but not why.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 4d93e1dd8..0911197bd 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -53,11 +53,11 @@ class Compiler {
new ExplicitOuter,
new Splitter),
List(new LazyVals,
- new ElimByName,
new SeqLiterals,
new InterceptedMethods,
new Literalize,
new Getters,
+ new ElimByName,
new ResolveSuper),
List(new Erasure),
List(new Mixin,