aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-22 13:45:04 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-30 14:26:06 +0200
commit5937b881a0e169e0b6f8d583924528f4a9773d91 (patch)
treeb6c23d9e3a391cca24c70f5f4605ed76e1210e4e /src/dotty/tools/dotc/Compiler.scala
parenta2813d2ef76cea23ff8a503af8a4a8c6c84f2fa3 (diff)
downloaddotty-5937b881a0e169e0b6f8d583924528f4a9773d91.tar.gz
dotty-5937b881a0e169e0b6f8d583924528f4a9773d91.tar.bz2
dotty-5937b881a0e169e0b6f8d583924528f4a9773d91.zip
Make LazyVals implement non-static modules. Move LV after erasure.
Diffstat (limited to 'src/dotty/tools/dotc/Compiler.scala')
-rw-r--r--src/dotty/tools/dotc/Compiler.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/Compiler.scala b/src/dotty/tools/dotc/Compiler.scala
index 1657adbbb..b4be19799 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -49,8 +49,7 @@ class Compiler {
List(new PatternMatcher,
new ExplicitOuter,
new Splitter),
- List(new LazyVals,
- new SeqLiterals,
+ List(new SeqLiterals,
new InterceptedMethods,
new Literalize,
new Getters,
@@ -58,6 +57,7 @@ class Compiler {
new ResolveSuper),
List(new Erasure),
List(new Mixin,
+ new LazyVals,
new Memoize,
new CapturedVars,
new Constructors,