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:
spoon 2006-05-15 15:42:04 +00:00
parent da84853969
commit 9c6595d912
1 changed files with 1 additions and 1 deletions

View File

@ -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
}) })
} }