summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-08-16 16:59:19 -0700
committerPaul Phillips <paulp@improving.org>2012-08-17 05:06:53 -0700
commit4b5bf74c69ab4bf7b785e36d5241625ce5d82bd6 (patch)
treef72b646b14e25de296b29227830233f73829c370
parent1375fd70d2a57dd5a4096ae6ad883c0bae690cd5 (diff)
downloadscala-4b5bf74c69ab4bf7b785e36d5241625ce5d82bd6.tar.gz
scala-4b5bf74c69ab4bf7b785e36d5241625ce5d82bd6.tar.bz2
scala-4b5bf74c69ab4bf7b785e36d5241625ce5d82bd6.zip
Absolutize tools.nsc => scala.tools.nsc.
Relative references to scala.tools which omit the "scala" are uncompilable by themselves if you happen to have a directory called "tools" which shadows scala/tools. As we do in trunk.
-rw-r--r--src/compiler/scala/reflect/macros/runtime/FrontEnds.scala4
-rw-r--r--src/compiler/scala/reflect/macros/runtime/Settings.scala2
-rw-r--r--src/compiler/scala/reflect/macros/util/Traces.scala4
-rw-r--r--src/scalap/scala/tools/scalap/Main.scala6
4 files changed, 8 insertions, 8 deletions
diff --git a/src/compiler/scala/reflect/macros/runtime/FrontEnds.scala b/src/compiler/scala/reflect/macros/runtime/FrontEnds.scala
index 69fa416f8f..c5c1c84cde 100644
--- a/src/compiler/scala/reflect/macros/runtime/FrontEnds.scala
+++ b/src/compiler/scala/reflect/macros/runtime/FrontEnds.scala
@@ -41,7 +41,7 @@ trait FrontEnds extends scala.tools.reflect.FrontEnds {
}
def interactive(): Unit = universe.reporter match {
- case reporter: tools.nsc.reporters.AbstractReporter => reporter.displayPrompt()
+ case reporter: scala.tools.nsc.reporters.AbstractReporter => reporter.displayPrompt()
case _ => ()
}
-} \ No newline at end of file
+}
diff --git a/src/compiler/scala/reflect/macros/runtime/Settings.scala b/src/compiler/scala/reflect/macros/runtime/Settings.scala
index c602532ea4..e9d9a17b81 100644
--- a/src/compiler/scala/reflect/macros/runtime/Settings.scala
+++ b/src/compiler/scala/reflect/macros/runtime/Settings.scala
@@ -17,7 +17,7 @@ trait Settings {
setCompilerSettings(options.split(" ").toList)
def setCompilerSettings(options: List[String]): this.type = {
- val settings = new tools.nsc.Settings(_ => ())
+ val settings = new scala.tools.nsc.Settings(_ => ())
settings.copyInto(universe.settings)
this
}
diff --git a/src/compiler/scala/reflect/macros/util/Traces.scala b/src/compiler/scala/reflect/macros/util/Traces.scala
index 078cd2b74f..d16916b753 100644
--- a/src/compiler/scala/reflect/macros/util/Traces.scala
+++ b/src/compiler/scala/reflect/macros/util/Traces.scala
@@ -2,7 +2,7 @@ package scala.reflect.macros
package util
trait Traces {
- def globalSettings: tools.nsc.Settings
+ def globalSettings: scala.tools.nsc.Settings
val macroDebugLite = globalSettings.YmacrodebugLite.value
val macroDebugVerbose = globalSettings.YmacrodebugVerbose.value
@@ -10,4 +10,4 @@ trait Traces {
val macroTraceVerbose = scala.tools.nsc.util.trace when macroDebugVerbose
@inline final def macroLogLite(msg: => Any) { if (macroDebugLite || macroDebugVerbose) println(msg) }
@inline final def macroLogVerbose(msg: => Any) { if (macroDebugVerbose) println(msg) }
-} \ No newline at end of file
+}
diff --git a/src/scalap/scala/tools/scalap/Main.scala b/src/scalap/scala/tools/scalap/Main.scala
index a8a9c65f63..49c272cc28 100644
--- a/src/scalap/scala/tools/scalap/Main.scala
+++ b/src/scalap/scala/tools/scalap/Main.scala
@@ -10,10 +10,10 @@ package scala.tools.scalap
import java.io.{ PrintStream, OutputStreamWriter, ByteArrayOutputStream }
import scala.reflect.NameTransformer
import scalax.rules.scalasig._
-import tools.nsc.util.{ ClassPath, JavaClassPath }
-import tools.util.PathResolver
+import scala.tools.nsc.util.{ ClassPath, JavaClassPath }
+import scala.tools.util.PathResolver
import ClassPath.DefaultJavaContext
-import tools.nsc.io.{ PlainFile, AbstractFile }
+import scala.tools.nsc.io.{ PlainFile, AbstractFile }
/**The main object used to execute scalap on the command-line.
*