aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorAlexander Myltsev <alexander.myltsev@phystech.edu>2015-07-23 15:16:18 +0300
committerAlexander Myltsev <alexander.myltsev@phystech.edu>2015-07-25 17:52:40 +0300
commit2cf567b1023734d481e8511e4e3314246afef6a4 (patch)
tree4e9b2ef2a44e3d4c804504b1ad224706a2069321 /src/dotty/tools/dotc/Compiler.scala
parentcf17b73cc02daf514f6d5499fd7a5562fc93349e (diff)
downloaddotty-2cf567b1023734d481e8511e4e3314246afef6a4.tar.gz
dotty-2cf567b1023734d481e8511e4e3314246afef6a4.tar.bz2
dotty-2cf567b1023734d481e8511e4e3314246afef6a4.zip
Implement getClass method
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 75b790861..a58ee907d 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -62,6 +62,7 @@ class Compiler {
new AugmentScala2Traits,
new ResolveSuper),
List(new Erasure),
+ List(new GetClass), // getClass transformation should be applied to specialized methods
List(new ElimErasedValueType,
new VCElideAllocations,
new Mixin,