summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Interpreter.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-15 22:43:33 -0700
committerPaul Phillips <paulp@improving.org>2012-05-15 22:45:46 -0700
commitb48aa909cefc4811e208f491d22d664538d75bad (patch)
treee553cd3366948b00f3f5ab9dcd273342d4b913ad /src/compiler/scala/tools/nsc/Interpreter.scala
parent3e038d801cd3177ed1230eb7729e11f8743db23a (diff)
downloadscala-b48aa909cefc4811e208f491d22d664538d75bad.tar.gz
scala-b48aa909cefc4811e208f491d22d664538d75bad.tar.bz2
scala-b48aa909cefc4811e208f491d22d664538d75bad.zip
Putting back things sbt noticed were gone.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Interpreter.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Interpreter.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/Interpreter.scala b/src/compiler/scala/tools/nsc/Interpreter.scala
new file mode 100644
index 0000000000..434f19f21b
--- /dev/null
+++ b/src/compiler/scala/tools/nsc/Interpreter.scala
@@ -0,0 +1,12 @@
+package scala.tools.nsc
+
+import interpreter._
+import java.io._
+
+/** A compatibility stub.
+ */
+@deprecated("Use a class in the scala.tools.nsc.interpreter package.", "2.9.0")
+class Interpreter(settings: Settings, out: PrintWriter) extends IMain(settings, out) {
+ def this(settings: Settings) = this(settings, new NewLinePrintWriter(new ConsoleWriter, true))
+ def this() = this(new Settings())
+} \ No newline at end of file