Большинство из нас проходит мимо с scalac -help
, scalac -X
и scalac -Y
.
Не забудьте также scala -help
.
Edit: sbt
пользователь может сделать обычный:
> set scalacOptions in Compile += "-X"
> compile
[snip]
[info] -Xcheck-null Warn upon selection of nullable reference.
[info] -Xcheckinit Wrap field accessors to throw an exception on uninitialized access.
[info] -Xdisable-assertions Generate no assertions or assumptions.
[info] -Xdivergence211 Turn on the 2.11 behavior of implicit divergence not terminating recursive implicit searches (SI-7291).
[info] -Xelide-below <n> Calls to @elidable methods are omitted if method priority is lower than argument
[info] -Xexperimental Enable experimental extensions.
[info] -Xfatal-warnings Fail the compilation if there are any warnings.
[snip]
По крайней мере, страница человек был недавно обновлен:
https://issues.scala-lang.org/browse/SI-7824
Другая идея - захватить источник и 'ant docs.comp'. Затем scala/build/scaladoc/compiler/index.html # scala.tools.nsc.Settings наследует от std и других настроек. К сожалению, scaladoc - это всего лишь листинг. Другая идея - захватить Eclipse IDE и просмотреть эти источники таким образом. –