summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-31 14:36:46 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-31 14:36:46 +0000
commit5993e28ec5832368e1c1e8fa80679540465f75a9 (patch)
tree6ea4544e841d0a1f75d2da7c1c6b63a17fe0d877
parent3049afc7ec7ca038dd8d68d26803c0733df01ee1 (diff)
downloadscala-5993e28ec5832368e1c1e8fa80679540465f75a9.tar.gz
scala-5993e28ec5832368e1c1e8fa80679540465f75a9.tar.bz2
scala-5993e28ec5832368e1c1e8fa80679540465f75a9.zip
Renamed phase 'Codify' to 'LiftCode'.
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala4
-rw-r--r--src/compiler/scala/tools/nsc/transform/LiftCode.scala (renamed from src/compiler/scala/tools/nsc/transform/Codify.scala)4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index 4b24b6ee46..7e0e81357a 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -237,7 +237,7 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
val global: Global.this.type = Global.this;
}
- object codify extends Codify {
+ object liftcode extends LiftCode {
val global: Global.this.type = Global.this;
}
@@ -316,7 +316,7 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
superAccessors,
pickler,
refchecks,
- codify,
+ liftcode,
uncurry,
tailCalls,
transMatcher,
diff --git a/src/compiler/scala/tools/nsc/transform/Codify.scala b/src/compiler/scala/tools/nsc/transform/LiftCode.scala
index 74ddf2cbe2..9a93b6c85a 100644
--- a/src/compiler/scala/tools/nsc/transform/Codify.scala
+++ b/src/compiler/scala/tools/nsc/transform/LiftCode.scala
@@ -13,7 +13,7 @@ import scala.collection.immutable.ListMap;
import scala.collection.mutable.{HashMap, ListBuffer};
import scala.tools.nsc.util.FreshNameCreator;
-abstract class Codify extends Transform {
+abstract class LiftCode extends Transform {
import global._; // the global environment
import definitions._; // standard classes and methods
@@ -21,7 +21,7 @@ abstract class Codify extends Transform {
import posAssigner.atPos; // for filling in tree positions
/** the following two members override abstract members in Transform */
- val phaseName: String = "codify";
+ val phaseName: String = "liftcode";
def newTransformer(unit: CompilationUnit): Transformer = new AddRefFields(unit);