aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-15 11:09:26 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-15 11:09:26 +0200
commitd894335f03b667ce3d3f6c4a29bfe6fcdf6be7a6 (patch)
treed447781ad8ababbf7b38d03d61d7df63bc846822 /src/dotty/tools/dotc/Compiler.scala
parentfe903c00027f0440207dc70c8b1d50ef3d0b3701 (diff)
downloaddotty-d894335f03b667ce3d3f6c4a29bfe6fcdf6be7a6.tar.gz
dotty-d894335f03b667ce3d3f6c4a29bfe6fcdf6be7a6.tar.bz2
dotty-d894335f03b667ce3d3f6c4a29bfe6fcdf6be7a6.zip
Move classTags before ElimByName.
To have less interactions with erasure.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 10f77353f..1569d360d 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -54,9 +54,9 @@ class Compiler {
new InterceptedMethods,
new Literalize,
new Getters,
+ new ClassTags,
new ElimByName,
- new ResolveSuper,
- new ClassTags),
+ new ResolveSuper),
List(new Erasure),
List(new ElimErasedValueType,
new VCInline,