summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/CompilerRun.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/CompilerRun.scala')
-rw-r--r--src/compiler/scala/tools/nsc/CompilerRun.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/CompilerRun.scala b/src/compiler/scala/tools/nsc/CompilerRun.scala
new file mode 100644
index 0000000000..7677fc2cb8
--- /dev/null
+++ b/src/compiler/scala/tools/nsc/CompilerRun.scala
@@ -0,0 +1,20 @@
+/* NSC -- new scala compiler
+ * Copyright 2005 LAMP/EPFL
+ * @author Martin Odersky
+ */
+// $Id$
+package scala.tools.nsc;
+
+class CompilerRun {
+ def firstPhase: Phase = NoPhase;
+ def terminalPhase: Phase = NoPhase;
+ def namerPhase: Phase = NoPhase;
+ def typerPhase: Phase = NoPhase;
+ def refchecksPhase: Phase = NoPhase;
+ def explicitOuterPhase: Phase = NoPhase;
+ def erasurePhase: Phase = NoPhase;
+ def flattenPhase: Phase = NoPhase;
+ def mixinPhase: Phase = NoPhase;
+ def phaseNamed(name: String): Phase = NoPhase;
+}
+