aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 17:18:09 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 17:18:09 +0200
commitfe903c00027f0440207dc70c8b1d50ef3d0b3701 (patch)
tree1274912f83fe33ec40d3a535f42ea3d8c2811051 /src/dotty/tools/dotc/Compiler.scala
parentd1bb4d333de08502e19db620adc1f92aaa9fca94 (diff)
downloaddotty-fe903c00027f0440207dc70c8b1d50ef3d0b3701.tar.gz
dotty-fe903c00027f0440207dc70c8b1d50ef3d0b3701.tar.bz2
dotty-fe903c00027f0440207dc70c8b1d50ef3d0b3701.zip
ClassTags: New phase which synthesises class tags.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 4899454a2..10f77353f 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -55,7 +55,8 @@ class Compiler {
new Literalize,
new Getters,
new ElimByName,
- new ResolveSuper),
+ new ResolveSuper,
+ new ClassTags),
List(new Erasure),
List(new ElimErasedValueType,
new VCInline,