aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-03-02 17:52:50 +0100
committerMartin Odersky <odersky@gmail.com>2016-03-02 17:53:01 +0100
commit25da2152f89c9c8a25188222fa395951b064e639 (patch)
treec5e000bab2f45be22d4075bb737d6d0a6a83fb86 /src/dotty/tools/dotc/Compiler.scala
parent69b6b892793e45a7158d006cdfb5554edc5db633 (diff)
downloaddotty-25da2152f89c9c8a25188222fa395951b064e639.tar.gz
dotty-25da2152f89c9c8a25188222fa395951b064e639.tar.bz2
dotty-25da2152f89c9c8a25188222fa395951b064e639.zip
Fix call propagation from constructor to class
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 d526903b8..967fb395a 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -75,7 +75,7 @@ class Compiler {
new Constructors, // constructors changes decls in transformTemplate, no InfoTransformers should be added after it
new FunctionalInterfaces,
new GetClass), // getClass transformation should be applied to specialized methods
- List(new LambdaLift, // in this mini-phase block scopes are incorrect. No phases that rely on scopes should be here
+ List(new LambdaLift, // in this mini-phase block scopes are incorrect. No phases that rely on scopes should be here
new ElimStaticThis,
new Flatten,
// new DropEmptyCompanions,