summaryrefslogtreecommitdiff
path: root/src/repl/scala/tools/nsc/Interpreter.scala
blob: 434f19f21b04ed43b0ef482dea26f678777b2ced (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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())
}