aboutsummaryrefslogtreecommitdiff
path: root/test/test
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-04-27 15:08:26 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-04-28 11:00:40 +0200
commitf010c62b8dc8baaaa9b87784d8664997bee95fa4 (patch)
tree701921097c2042fdd074915c5acb17c59273389e /test/test
parentb5d6df22ab6bae982b6c840e1563d4bcbadd384b (diff)
downloaddotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.tar.gz
dotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.tar.bz2
dotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.zip
Revert Scanners and Tokens to their original form
Since we decided to go with the non dotty-scanner approach these are unnecessary to have altered, might just as well revert them.
Diffstat (limited to 'test/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 19a376b48..0fe05794f 100644
--- a/test/test/TestREPL.scala
+++ b/test/test/TestREPL.scala
@@ -20,7 +20,7 @@ class TestREPL(script: String) extends REPL {
override lazy val config = new REPL.Config {
override val output = new NewLinePrintWriter(out)
- override def input(implicit ctx: Context) = new InteractiveReader {
+ override def input(in: Interpreter)(implicit ctx: Context) = new InteractiveReader {
val lines = script.lines
def readLine(prompt: String): String = {
val line = lines.next