cope with Interpreter.compile being renamed to Interpreter.compileFile
git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@7426 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
parent
da84853969
commit
9c6595d912
|
@ -150,7 +150,7 @@ class InterpreterLoop(in: BufferedReader, out: PrintWriter) {
|
||||||
return Pair(false, false)
|
return Pair(false, false)
|
||||||
else if (line.matches(compileRegexp)) {
|
else if (line.matches(compileRegexp)) {
|
||||||
withFile(line)(f => {
|
withFile(line)(f => {
|
||||||
interpreter.compile(f)
|
interpreter.compileFile(f)
|
||||||
shouldReplay = true
|
shouldReplay = true
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue