summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/ast/Trees.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2006-06-22 16:33:29 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2006-06-22 16:33:29 +0000
commit059cda57f0f109642aca0f8ffc7aa263bec7a451 (patch)
tree83c98a7cc8192d782d95363417a67715f595b41f /src/compiler/scala/tools/nsc/ast/Trees.scala
parent0282dda20174988da52580ab6e5bd9383cd09793 (diff)
downloadscala-059cda57f0f109642aca0f8ffc7aa263bec7a451.tar.gz
scala-059cda57f0f109642aca0f8ffc7aa263bec7a451.tar.bz2
scala-059cda57f0f109642aca0f8ffc7aa263bec7a451.zip
Corrected comment about the state of the AST fo...
Corrected comment about the state of the AST for each phase.
Diffstat (limited to 'src/compiler/scala/tools/nsc/ast/Trees.scala')
-rw-r--r--src/compiler/scala/tools/nsc/ast/Trees.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/ast/Trees.scala b/src/compiler/scala/tools/nsc/ast/Trees.scala
index 6ae86ee238..cfa5c3b8a8 100644
--- a/src/compiler/scala/tools/nsc/ast/Trees.scala
+++ b/src/compiler/scala/tools/nsc/ast/Trees.scala
@@ -562,7 +562,7 @@ trait Trees requires Global {
case Star(elem) => (eliminated by transmatch)
case Bind(name, body) => (eliminated by transmatch)
case ArrayValue(elemtpt, trees) => (introduced by uncurry)
- case Function(vparams, body) => (eliminated by typecheck)
+ case Function(vparams, body) => (eliminated by lambdaLift)
case Assign(lhs, rhs) =>
case If(cond, thenp, elsep) =>
case Match(selector, cases) =>