aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-05-29 13:09:45 +0200
committerMartin Odersky <odersky@gmail.com>2015-06-01 15:04:46 +0200
commit8263d33b047b926ef9750b73fe1a97ea09237df3 (patch)
tree0b8d3479af0b35f785c6dcd5f24534cd08ba6f51 /src/dotty/tools/dotc/Compiler.scala
parente4dc4fabd3e34e96ce60311b60219fa8c0064bc2 (diff)
downloaddotty-8263d33b047b926ef9750b73fe1a97ea09237df3.tar.gz
dotty-8263d33b047b926ef9750b73fe1a97ea09237df3.tar.bz2
dotty-8263d33b047b926ef9750b73fe1a97ea09237df3.zip
New phase: LinkScala2ImplClasses
This phase rewrites supercalls to calls to static implementation class methods.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 31fabb28b..0f0da76ee 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -64,7 +64,7 @@ class Compiler {
new Mixin,
new LazyVals,
new Memoize,
- //new LinkScala2ImplClasses,
+ new LinkScala2ImplClasses,
new CapturedVars, // capturedVars has a transformUnit: no phases should introduce local mutable vars here
new Constructors,
new FunctionalInterfaces),