aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/Compiler.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-12-03 18:27:28 +0100
committerMartin Odersky <odersky@gmail.com>2014-12-03 18:27:35 +0100
commita612da844fc7c9e9cc920e4b9c0ecb65e0273d0c (patch)
tree6750a1d6664b743226a450a44a58dc167640d6c2 /src/dotty/tools/dotc/Compiler.scala
parent8fb5e1e8ee69f14fec52056d43528755544870b7 (diff)
downloaddotty-a612da844fc7c9e9cc920e4b9c0ecb65e0273d0c.tar.gz
dotty-a612da844fc7c9e9cc920e4b9c0ecb65e0273d0c.tar.bz2
dotty-a612da844fc7c9e9cc920e4b9c0ecb65e0273d0c.zip
Add new SeqLiterals phase.
Replaces SeqLiterals by JavaSeqLiterals, because the latter's (array-)type is preserved after erasure.
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 004a3868c..c414de130 100644
--- a/src/dotty/tools/dotc/Compiler.scala
+++ b/src/dotty/tools/dotc/Compiler.scala
@@ -48,6 +48,7 @@ class Compiler {
new ExplicitOuter,
new Splitter),
List(new ElimByName,
+ new SeqLiterals,
new InterceptedMethods,
new Literalize,
new Getters,