summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/CompileServer.scala
diff options
context:
space:
mode:
authorSean McDirmid <sean.mcdirmid@gmail.com>2006-08-25 10:32:17 +0000
committerSean McDirmid <sean.mcdirmid@gmail.com>2006-08-25 10:32:17 +0000
commit6d9e1774b9d543550473b3f32c4925d290c9edd1 (patch)
tree53fad0ab0cedebaadb4fdb8aa07675415596c9bf /src/compiler/scala/tools/nsc/CompileServer.scala
parentb5f66bdd72531b82a30a98872338f682d553f642 (diff)
downloadscala-6d9e1774b9d543550473b3f32c4925d290c9edd1.tar.gz
scala-6d9e1774b9d543550473b3f32c4925d290c9edd1.tar.bz2
scala-6d9e1774b9d543550473b3f32c4925d290c9edd1.zip
Modified scopes and positions so they can be co...
Modified scopes and positions so they can be configured more flexibly.
Diffstat (limited to 'src/compiler/scala/tools/nsc/CompileServer.scala')
-rw-r--r--src/compiler/scala/tools/nsc/CompileServer.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/CompileServer.scala b/src/compiler/scala/tools/nsc/CompileServer.scala
index c88f412948..9136216426 100644
--- a/src/compiler/scala/tools/nsc/CompileServer.scala
+++ b/src/compiler/scala/tools/nsc/CompileServer.scala
@@ -123,7 +123,7 @@ object CompileServer extends SocketServer {
} else {
if (args contains "-verbose")
out.println("[Starting new Scala compile server instance]")
- compiler = new Global(command.settings, reporter) {
+ compiler = new StdGlobal(command.settings, reporter) {
override def inform(msg: String) = out.println(msg)
}
}