summaryrefslogtreecommitdiff
path: root/sources/scalac/PhaseRepository.java
diff options
context:
space:
mode:
authorschinz <schinz@epfl.ch>2003-02-19 14:21:16 +0000
committerschinz <schinz@epfl.ch>2003-02-19 14:21:16 +0000
commitaffdf7ee9c4ad49ffe02cb9092315cd16610ab70 (patch)
tree9c85adfddf35968c22f00cacbf2a6cd74e6fddfb /sources/scalac/PhaseRepository.java
parentb8509a08f1d8b836f3925bed2cdf781c82fa7c20 (diff)
downloadscala-affdf7ee9c4ad49ffe02cb9092315cd16610ab70.tar.gz
scala-affdf7ee9c4ad49ffe02cb9092315cd16610ab70.tar.bz2
scala-affdf7ee9c4ad49ffe02cb9092315cd16610ab70.zip
- added GenJVM phase
Diffstat (limited to 'sources/scalac/PhaseRepository.java')
-rw-r--r--sources/scalac/PhaseRepository.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/scalac/PhaseRepository.java b/sources/scalac/PhaseRepository.java
index f2bd41e58e..218decea03 100644
--- a/sources/scalac/PhaseRepository.java
+++ b/sources/scalac/PhaseRepository.java
@@ -25,9 +25,9 @@ import scalac.transformer.ErasurePhase;
import scalac.optimizer.OptimizePhase;
import scalac.backend.AddConstructorsPhase;
import scalac.backend.msil.GenMSILPhase;
-import scalac.backend.jvm.GenJVMPhase;
import scalac.jaco.GenJavaPhase;
*/
+import scalac.backend.jvm.GenJVMPhase;
public class PhaseRepository {
@@ -60,8 +60,8 @@ public class PhaseRepository {
ADDCONSTRUCTORS = new AddConstructorsPhase(),
GENMSIL = new GenMSILPhase(),
GENJAVA = new GenJavaPhase(),
- GENJVM = new GenJVMPhase(),
*/
+ GENJVM = new GenJVMPhase(),
TERMINAL = PhaseDescriptor.TERMINAL,
};
}
@@ -88,8 +88,8 @@ public class PhaseRepository {
public final AddConstructorsPhase ADDCONSTRUCTORS;
public final GenMSILPhase GENMSIL;
public final GenJavaPhase GENJAVA;
- public final GenJVMPhase GENJVM;
*/
+ public final GenJVMPhase GENJVM;
public final PhaseDescriptor TERMINAL;
//########################################################################