summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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.
*