summaryrefslogtreecommitdiff
path: root/src/repl/scala/tools/nsc/Interpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/repl/scala/tools/nsc/Interpreter.scala')
-rw-r--r--src/repl/scala/tools/nsc/Interpreter.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/repl/scala/tools/nsc/Interpreter.scala b/src/repl/scala/tools/nsc/Interpreter.scala
new file mode 100644
index 0000000000..434f19f21b
--- /dev/null
+++ b/src/repl/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