summaryrefslogtreecommitdiff
path: root/src/repl
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-07-10 13:11:36 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-07-10 13:11:36 -0700
commit7125dc3e2c8e996f956bba08201c24e458391c12 (patch)
tree6df29e6d117b4f52ac45069c2e777184096712f7 /src/repl
parent3946e12f0aa6ed39c1969772feda3d72b9367572 (diff)
parent72298b838354e621b2fed61734d394d5befa0708 (diff)
downloadscala-7125dc3e2c8e996f956bba08201c24e458391c12.tar.gz
scala-7125dc3e2c8e996f956bba08201c24e458391c12.tar.bz2
scala-7125dc3e2c8e996f956bba08201c24e458391c12.zip
Merge pull request #2697 from som-snytt/issue/6419-repl-save
SI-6419 Repl save session command
Diffstat (limited to 'src/repl')
-rw-r--r--src/repl/scala/tools/nsc/interpreter/ILoop.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/repl/scala/tools/nsc/interpreter/ILoop.scala b/src/repl/scala/tools/nsc/interpreter/ILoop.scala
index dc5183fdf6..ccc9621fad 100644
--- a/src/repl/scala/tools/nsc/interpreter/ILoop.scala
+++ b/src/repl/scala/tools/nsc/interpreter/ILoop.scala
@@ -222,6 +222,7 @@ class ILoop(in0: Option[BufferedReader], protected val out: JPrintWriter)
nullary("quit", "exit the interpreter", () => Result(keepRunning = false, None)),
nullary("replay", "reset execution and replay all previous commands", replay),
nullary("reset", "reset the repl to its initial state, forgetting all session entries", resetCommand),
+ cmd("save", "<path>", "save replayable session to a file", saveCommand),
shCommand,
cmd("settings", "[+|-]<options>", "+enable/-disable flags, set compiler options", changeSettings),
nullary("silent", "disable/enable automatic printing of results", verbosity),
@@ -600,6 +601,12 @@ class ILoop(in0: Option[BufferedReader], protected val out: JPrintWriter)
Result(keepRunning = true, shouldReplay)
}
+ def saveCommand(filename: String): Result = (
+ if (filename.isEmpty) echo("File name is required.")
+ else if (replayCommandStack.isEmpty) echo("No replay commands in session")
+ else File(filename).printlnAll(replayCommands: _*)
+ )
+
def addClasspath(arg: String): Unit = {
val f = File(arg).normalize
if (f.exists) {