aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/repl/Interpreter.scala
diff options
context:
space:
mode:
authorClemens Winter <clemenswinter1@gmail.com>2016-07-27 16:51:03 +0200
committerClemens Winter <clemenswinter1@gmail.com>2016-07-27 17:29:42 +0200
commitbc07944a62102765c1bbdc35dae4f19f3bfd9c8d (patch)
treeb41b1dde92ca007db3d62634b2681b564cb166a5 /src/dotty/tools/dotc/repl/Interpreter.scala
parent5ffce6e910f4cc1fced15824df86a9524be81681 (diff)
downloaddotty-bc07944a62102765c1bbdc35dae4f19f3bfd9c8d.tar.gz
dotty-bc07944a62102765c1bbdc35dae4f19f3bfd9c8d.tar.bz2
dotty-bc07944a62102765c1bbdc35dae4f19f3bfd9c8d.zip
Fix #1411: Give REPL output in correct order
Diffstat (limited to 'src/dotty/tools/dotc/repl/Interpreter.scala')
-rw-r--r--src/dotty/tools/dotc/repl/Interpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/repl/Interpreter.scala b/src/dotty/tools/dotc/repl/Interpreter.scala
index e11fbf5cc..edcc5b153 100644
--- a/src/dotty/tools/dotc/repl/Interpreter.scala
+++ b/src/dotty/tools/dotc/repl/Interpreter.scala
@@ -41,5 +41,5 @@ trait Interpreter {
def delayOutputDuring[T](operation: => T): T
/** Gets the last output not printed immediately */
- def lastOutput(): List[String]
+ def lastOutput(): Seq[String]
}