aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorAlexander Myltsev <alexander.myltsev@phystech.edu>2015-06-21 12:54:44 +0300
committerAlexander Myltsev <alexander.myltsev@phystech.edu>2015-06-22 14:51:21 +0300
commit12caa2fd4c6774604704d09d0ba7932f9aca674e (patch)
tree3cb079261f02e714077abb3b4e218155784ff32c /src/dotty/tools/dotc/Compiler.scala
parentbb75d4039ee127dfee2630609924f7f3c9132ff6 (diff)
downloaddotty-12caa2fd4c6774604704d09d0ba7932f9aca674e.tar.gz
dotty-12caa2fd4c6774604704d09d0ba7932f9aca674e.tar.bz2
dotty-12caa2fd4c6774604704d09d0ba7932f9aca674e.zip
Closes #579 Implement mini-phase for classOf[T]
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 386f976cf..a10201bd0 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -46,7 +46,8 @@ class Compiler {
new NormalizeFlags,
new ExtensionMethods,
new ExpandSAMs,
- new TailRec),
+ new TailRec,
+ new ClassOf),
List(new PatternMatcher,
new ExplicitOuter,
new Splitter),