summaryrefslogtreecommitdiff
path: root/sources/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2005-05-13 15:29:45 +0000
committerMartin Odersky <odersky@gmail.com>2005-05-13 15:29:45 +0000
commit91a11635ebce7c462364cc8d067d49db2497d3e8 (patch)
treeb82fcd2b06bc921f02c8addd830e0bef6b925b26 /sources/scala/tools/nsc/typechecker/Typers.scala
parenta636876294747f48cf4e7add5781b270d3f01cb0 (diff)
downloadscala-91a11635ebce7c462364cc8d067d49db2497d3e8.tar.gz
scala-91a11635ebce7c462364cc8d067d49db2497d3e8.tar.bz2
scala-91a11635ebce7c462364cc8d067d49db2497d3e8.zip
a
Diffstat (limited to 'sources/scala/tools/nsc/typechecker/Typers.scala')
-rwxr-xr-xsources/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/nsc/typechecker/Typers.scala b/sources/scala/tools/nsc/typechecker/Typers.scala
index 5cd6d9b473..685e6837f2 100755
--- a/sources/scala/tools/nsc/typechecker/Typers.scala
+++ b/sources/scala/tools/nsc/typechecker/Typers.scala
@@ -27,7 +27,7 @@ abstract class Typers: Analyzer {
unit.body = newTyper(startContext.make(unit)).transformExpr(unit.body)
}
- def newTyper(context: Context) = new Typer(context);
+ def newTyper(context: Context): Typer = new Typer(context);
class Typer(context0: Context) {
import context0.unit;