summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-27 19:39:38 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-03-27 19:39:38 +0000
commit6b46664e637ff526507bd31b5bd2fb3cea1e715e (patch)
tree33174339dc79f34e77c093f16d5a1bd7ef52cfaa /src/compiler/scala/tools/nsc/Global.scala
parenta959828b60b7bacbdeff23f0ac1b7304d416df54 (diff)
downloadscala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.tar.gz
scala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.tar.bz2
scala-6b46664e637ff526507bd31b5bd2fb3cea1e715e.zip
Moved codification to its own phase.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index 23cb3dc9bb..4b24b6ee46 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -237,6 +237,10 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
val global: Global.this.type = Global.this;
}
+ object codify extends Codify {
+ val global: Global.this.type = Global.this;
+ }
+
object uncurry extends UnCurry {
val global: Global.this.type = Global.this;
}
@@ -312,6 +316,7 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
superAccessors,
pickler,
refchecks,
+ codify,
uncurry,
tailCalls,
transMatcher,