aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-05-29 12:23:19 +0200
committerMartin Odersky <odersky@gmail.com>2015-06-01 15:04:45 +0200
commit71067e64900b212068328d114edc741c6e12049b (patch)
tree6f20f215fec695897dbc059f8a73fe3ce206f3db /src/dotty/tools/dotc/Compiler.scala
parent4f50e8fa5b48b5a931224d40b7c6fc0aed3da44b (diff)
downloaddotty-71067e64900b212068328d114edc741c6e12049b.tar.gz
dotty-71067e64900b212068328d114edc741c6e12049b.tar.bz2
dotty-71067e64900b212068328d114edc741c6e12049b.zip
New phase: AugmentScala2Traits
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 41e77c61f..31fabb28b 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -56,6 +56,7 @@ class Compiler {
new Getters,
new ClassTags,
new ElimByName,
+ new AugmentScala2Traits,
new ResolveSuper),
List(new Erasure),
List(new ElimErasedValueType,
@@ -63,6 +64,7 @@ class Compiler {
new Mixin,
new LazyVals,
new Memoize,
+ //new LinkScala2ImplClasses,
new CapturedVars, // capturedVars has a transformUnit: no phases should introduce local mutable vars here
new Constructors,
new FunctionalInterfaces),