aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/repl/Interpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/repl/Interpreter.scala')
-rw-r--r--src/dotty/tools/dotc/repl/Interpreter.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/repl/Interpreter.scala b/src/dotty/tools/dotc/repl/Interpreter.scala
index ea587a097..6a292dfe2 100644
--- a/src/dotty/tools/dotc/repl/Interpreter.scala
+++ b/src/dotty/tools/dotc/repl/Interpreter.scala
@@ -33,4 +33,10 @@ trait Interpreter {
/** Suppress output during evaluation of `operation`. */
def beQuietDuring[T](operation: => T): T
+
+ /** Suppresses output and saves it for `lastOutput` to collect */
+ def delayOutputDuring[T](operation: => T): T
+
+ /** Gets the last output not printed immediately */
+ def lastOutput(): List[String]
}