summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/interpreter/ILoop.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-02-01 13:44:17 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-02-01 13:44:17 +0000
commit589b8a5d536da8c41bcaeee4aff382828fd9253d (patch)
treeb50a560db2e6a68257c6a5d6e6f111a062891b92 /src/compiler/scala/tools/nsc/interpreter/ILoop.scala
parentcd4486aa72ae351bf7dbdb5f430e9672430b0dba (diff)
downloadscala-589b8a5d536da8c41bcaeee4aff382828fd9253d.tar.gz
scala-589b8a5d536da8c41bcaeee4aff382828fd9253d.tar.bz2
scala-589b8a5d536da8c41bcaeee4aff382828fd9253d.zip
Minor fix for Choice setting plus added some de...
Minor fix for Choice setting plus added some deprecated methods that should survive till next release. review by extempore
Diffstat (limited to 'src/compiler/scala/tools/nsc/interpreter/ILoop.scala')
-rw-r--r--src/compiler/scala/tools/nsc/interpreter/ILoop.scala7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/interpreter/ILoop.scala b/src/compiler/scala/tools/nsc/interpreter/ILoop.scala
index 3be18bbb08..4c6e14ed6f 100644
--- a/src/compiler/scala/tools/nsc/interpreter/ILoop.scala
+++ b/src/compiler/scala/tools/nsc/interpreter/ILoop.scala
@@ -48,6 +48,11 @@ class ILoop(in0: Option[BufferedReader], protected val out: PrintWriter)
@deprecated("Use `intp` instead.")
def interpreter = intp
+ @deprecated("Use `intp` instead.")
+ def interpreter_= (i: Interpreter){
+ intp = i
+ }
+
/** The context class loader at the time this object was created */
protected val originalClassLoader = Thread.currentThread.getContextClassLoader
@@ -687,4 +692,4 @@ object ILoop {
Console.println("\nDebug repl exiting.")
repl.closeInterpreter()
}
-} \ No newline at end of file
+}