summaryrefslogtreecommitdiff
path: root/src/interactive/scala/tools/nsc/interactive/Main.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8503 -version is info settingSom Snytt2014-05-291-3/+4
| | | | | | | | | | | And the Scala runner exits with 0 for info settings. Producing the version string is consolidated. The compiler driver uses the default settings hook to short-circuit on -version. That's to avoid creating the compiler; really it should check shouldStopWithInfo first, as the runner does.
* SI-7261 Implicit conversion of BooleanSetting to Boolean and BooleanFlagSom Snytt2013-03-271-1/+1
| | | | | | | This commit shortens expressions of the form `if (settings.debug.value)` to `if (settings.debug)` for various settings. Rarely, the setting is supplied as a method argument. The conversion is not employed in simple definitions where the Boolean type would have to be specified.
* Moved interactive code into src/interactive.Paul Phillips2013-03-091-0/+34
As with scaladoc, pushes presentation compiler specific code into its separate source area.