scala-ide / scala-worksheet

A Scala IDE plugin for a multi-line REPL (called worksheet)
96 stars 24 forks source link

Extract the instrumentation logic from the Scala compiler #91

Closed dotta closed 11 years ago

dotta commented 11 years ago

Currently, the instrumentation logic is part of the Scala compiler project. This is an issue as any issue affecting the instrumentation won't be released until the next Scala release. It turns out that we can move the instrumentation logic out of the compiler with a minimum effort, so we should definitely do so for Scala 2.10.1 (it's too late for Scala 2.10.0).

We should also remove the WorksheetSupport class from the Scala library.

dotta commented 11 years ago

And here is the ticket opened in the Scala issue tracker: https://issues.scala-lang.org/browse/SI-6458

dotta commented 11 years ago

This commit also brings all fixes in the instrumentation logic committed in the Scala project!