summaryrefslogtreecommitdiff
path: root/test/files/run/t7933.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7933 REPL javax.script eval is cached resultRaphael Jolly2014-01-311-0/+11
The problem is that the repl underneath the script engine evaluates input to val res0..resN, so it is a one shot operation. To allow repetition, compile(script) now returns a CompiledScript object whose eval method can be called any number of times.