aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-04-11 17:45:55 +0200
committerGitHub <noreply@github.com>2017-04-11 17:45:55 +0200
commit65dc7ad151a38158a45c5836d5e1f0fd48b8e396 (patch)
tree7d1e2c9d1f848525a7d406e6046559081e70f675 /compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
parentf13e3a43d227933ce644f2503f658ea436ea11b4 (diff)
parent223f32b7658a77fb2ad6b30ad247c0e27204b558 (diff)
downloaddotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.tar.gz
dotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.tar.bz2
dotty-65dc7ad151a38158a45c5836d5e1f0fd48b8e396.zip
Merge pull request #2191 from dotty-staging/sync-classpath-scalac
Fix #2186: Synchronize classpath handling with Scala 2.12
Diffstat (limited to 'compiler/src/dotty/tools/dotc/config/ScalaSettings.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/config/ScalaSettings.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
index 63c3d5f74..941434dd5 100644
--- a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+++ b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
@@ -73,6 +73,8 @@ class ScalaSettings extends Settings.SettingGroup {
val log = PhasesSetting("-Ylog", "Log operations during")
val emitTasty = BooleanSetting("-YemitTasty", "Generate tasty in separate *.tasty file.")
val Ylogcp = BooleanSetting("-Ylog-classpath", "Output information about what classpath is being applied.")
+ val YdisableFlatCpCaching = BooleanSetting("-YdisableFlatCpCaching", "Do not cache flat classpath representation of classpath elements from jars across compiler instances.")
+
val YnoImports = BooleanSetting("-Yno-imports", "Compile without importing scala.*, java.lang.*, or Predef.")
val YnoPredef = BooleanSetting("-Yno-predef", "Compile without importing Predef.")
val Yskip = PhasesSetting("-Yskip", "Skip")