summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2005-02-23 15:42:36 +0000
committerburaq <buraq@epfl.ch>2005-02-23 15:42:36 +0000
commit51a21634fe205a04254750bb1e9a48f46e75071d (patch)
tree30ea577e9be07ce2a6ca99806aa47dfe33c8d1e3
parent2f7726cbc074a3d75a4a2312b91384f1ae152a2f (diff)
downloadscala-51a21634fe205a04254750bb1e9a48f46e75071d.tar.gz
scala-51a21634fe205a04254750bb1e9a48f46e75071d.tar.bz2
scala-51a21634fe205a04254750bb1e9a48f46e75071d.zip
fixed comment
-rwxr-xr-xsources/scala/tools/scalac/typechecker/RefCheck.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/scala/tools/scalac/typechecker/RefCheck.scala b/sources/scala/tools/scalac/typechecker/RefCheck.scala
index 1450e4d27d..1b3ce2e0a2 100755
--- a/sources/scala/tools/scalac/typechecker/RefCheck.scala
+++ b/sources/scala/tools/scalac/typechecker/RefCheck.scala
@@ -18,7 +18,7 @@ import scalac.{Global => scalac_Global}
package scala.tools.scalac.typechecker {
import scalac.util.NewArray;
-
+/*<export>*/
/** Post-attribution checking and transformation.
*
* This phase performs the following checks.
@@ -28,7 +28,7 @@ import scalac.util.NewArray;
* - All type variable uses conform to variance annotations.
* - No forward reference to a term symbol extends beyond a value definition.
*
- * It preforms the following transformations.
+ * It performs the following transformations.
*
* - Local modules are replaced by variables and classes
* - caseArity, caseElement implementations added to case classes
@@ -42,6 +42,7 @@ import scalac.util.NewArray;
* - Type nodes are replaced by TypeTerm nodes.
* - Eliminate constant definitions
*/
+/*</export>*/
class RefCheck(globl: scalac.Global) extends Transformer(globl) {
import Modifiers._;