summaryrefslogtreecommitdiff
path: root/src/repl/scala/tools/nsc/InterpreterLoop.scala
blob: a0be3f4fdbd2d19f4485e6319f537a6e038a4c65 (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 InterpreterLoop(in0: Option[BufferedReader], out: PrintWriter) extends ILoop(in0, out) {
  def this(in0: BufferedReader, out: PrintWriter) = this(Some(in0), out)
  def this() = this(None, new PrintWriter(scala.Console.out))
}