aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-04-27 12:00:29 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-04-28 11:00:39 +0200
commitd04984596c6abfa27b217b12a42caca26f0c269f (patch)
tree5657a2a1da905954fbab71f49a9cb477f7a690e7 /test
parent96cedcdcd82148f091989836eb4959b2c3ec3382 (diff)
downloaddotty-d04984596c6abfa27b217b12a42caca26f0c269f.tar.gz
dotty-d04984596c6abfa27b217b12a42caca26f0c269f.tar.bz2
dotty-d04984596c6abfa27b217b12a42caca26f0c269f.zip
Add multiline support using ammonite multilineFilter
Diffstat (limited to 'test')
-rw-r--r--test/test/TestREPL.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test/TestREPL.scala b/test/test/TestREPL.scala
index 53fcc0730..19a376b48 100644
--- a/test/test/TestREPL.scala
+++ b/test/test/TestREPL.scala
@@ -22,7 +22,7 @@ class TestREPL(script: String) extends REPL {
override def input(implicit ctx: Context) = new InteractiveReader {
val lines = script.lines
- def readLine(prompt: String)(implicit ctx: Context): String = {
+ def readLine(prompt: String): String = {
val line = lines.next
if (line.startsWith(prompt) || line.startsWith(continuationPrompt)) {
output.println(line)