summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
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 /src/compiler/scala/tools/nsc/Global.scala
parent3049afc7ec7ca038dd8d68d26803c0733df01ee1 (diff)
downloadscala-5993e28ec5832368e1c1e8fa80679540465f75a9.tar.gz
scala-5993e28ec5832368e1c1e8fa80679540465f75a9.tar.bz2
scala-5993e28ec5832368e1c1e8fa80679540465f75a9.zip
Renamed phase 'Codify' to 'LiftCode'.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala4
1 files changed, 2 insertions, 2 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,