From 22b60f2f2b6dbacbd528d10cb18da8e5afe750da Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 22 May 2009 15:13:22 +0000 Subject: some documentation; statistics wrt implicits; n... some documentation; statistics wrt implicits; new presentation compiler --- src/compiler/scala/tools/nsc/Main.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/scala/tools/nsc/Main.scala') diff --git a/src/compiler/scala/tools/nsc/Main.scala b/src/compiler/scala/tools/nsc/Main.scala index bfc6681b5b..36e0b67457 100644 --- a/src/compiler/scala/tools/nsc/Main.scala +++ b/src/compiler/scala/tools/nsc/Main.scala @@ -36,7 +36,7 @@ object Main extends AnyRef with EvalLoop { loop { line => val args = List.fromString(line, ' ') val command = new CompilerCommand(args, new Settings(error), error, true) - (new compiler.Run) compile command.files + new compiler.Run() compile command.files } } @@ -69,7 +69,7 @@ object Main extends AnyRef with EvalLoop { reporter.info(null, command.usageMsg, true) reporter.info(null, compiler.pluginOptionsHelp, true) } else { - val run = new compiler.Run + val run = new compiler.Run() run compile command.files reporter.printSummary() } -- cgit v1.2.3