summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/UnCurry.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-19 03:53:15 +0000
committerPaul Phillips <paulp@improving.org>2011-01-19 03:53:15 +0000
commit5d8c6c898aa4031c69f9ef0f0dbe8a82e51f793e (patch)
treebdf576843e3e26934c490991418ca5348bd20ecc /src/compiler/scala/tools/nsc/transform/UnCurry.scala
parentc90ff3d95dde4b81583e445da2c125b5bed9ab53 (diff)
downloadscala-5d8c6c898aa4031c69f9ef0f0dbe8a82e51f793e.tar.gz
scala-5d8c6c898aa4031c69f9ef0f0dbe8a82e51f793e.tar.bz2
scala-5d8c6c898aa4031c69f9ef0f0dbe8a82e51f793e.zip
There was a bunch of work adriaan and I did whi...
There was a bunch of work adriaan and I did which ended up in some git backwaters. I think he is still working with the main code pieces but I didn't want to lose a couple comments/clarifications. No review.
Diffstat (limited to 'src/compiler/scala/tools/nsc/transform/UnCurry.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/UnCurry.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/UnCurry.scala b/src/compiler/scala/tools/nsc/transform/UnCurry.scala
index 2f56180c8d..1a6a36691d 100644
--- a/src/compiler/scala/tools/nsc/transform/UnCurry.scala
+++ b/src/compiler/scala/tools/nsc/transform/UnCurry.scala
@@ -10,7 +10,7 @@ import symtab.Flags._
import scala.collection.{ mutable, immutable }
/*<export> */
-/** - uncurry all symbol and tree types (@see UnCurryPhase)
+/** - uncurry all symbol and tree types (@see UnCurryPhase) -- this includes normalizing all proper types.
* - for every curried parameter list: (ps_1) ... (ps_n) ==> (ps_1, ..., ps_n)
* - for every curried application: f(args_1)...(args_n) ==> f(args_1, ..., args_n)
* - for every type application: f[Ts] ==> f[Ts]() unless followed by parameters