aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-09-17 12:01:29 +0200
committerMartin Odersky <odersky@gmail.com>2015-09-17 12:01:44 +0200
commit50e3a7d92f4b7cc4cd922eb92c7ed8bf793b159c (patch)
treeb9e730f476167186316f9a684000cec04cd841d0 /src/dotty/tools/dotc/Compiler.scala
parent7ee013745699029830a822d0b9e1e8862eaa0b8c (diff)
downloaddotty-50e3a7d92f4b7cc4cd922eb92c7ed8bf793b159c.tar.gz
dotty-50e3a7d92f4b7cc4cd922eb92c7ed8bf793b159c.tar.bz2
dotty-50e3a7d92f4b7cc4cd922eb92c7ed8bf793b159c.zip
New phase: ExplicitSelf
Makes self types explicit, if this is needed to identify a member in a select. Fixes #789.
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 c537d8885..a36743b59 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -52,6 +52,7 @@ class Compiler {
new ClassOf),
List(new PatternMatcher,
new ExplicitOuter,
+ new ExplicitSelf,
new Splitter),
List(new VCInlineMethods,
new SeqLiterals,