You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: community-build/src/scala/dotty/communitybuild/projects.scala
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -503,7 +503,7 @@ object projects:
503
503
project ="verify",
504
504
sbtTestCommand ="verifyJVM/test",
505
505
sbtDocCommand ="verifyJVM/doc",
506
-
scalacOptions =SbtCommunityProject.scalacOptions.filter(flag !="-Xcheck-macros"&& flag !="-Xlint") // TODO enable -Xcheck-macros, wrong flag -Xlint
506
+
scalacOptions =SbtCommunityProject.scalacOptions.filter(flag => flag !="-Xcheck-macros"&& flag !="-Xlint") // TODO enable -Xcheck-macros, wrong flag -Xlint
valYfromTastyIgnoreList:Setting[List[String]] =MultiStringSetting(ForkSetting, "Yfrom-tasty-ignore-list", "file", "List of `tasty` files in jar files that will not be loaded when using -from-tasty.")
valYprofileDestination:Setting[String] =StringSetting(ForkSetting, "Yprofile-destination", "file", "Where to send profiling output - specify a file, default is to the console.", "")
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
473
-
valYnoGenericSig:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-generic-signatures", "Suppress generation of generic signatures for Java.", deprecation =Some(Deprecation("Use -Xno-generic-signatures instead.", "-Xno-generic-signatures")))
472
+
valYnoGenericSig:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-generic-signatures", "Suppress generation of generic signatures for Java.", deprecation =Deprecation.renamed("-Xno-generic-signatures"))
474
473
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
475
-
valYdumpclasses:Setting[String] =StringSetting(ForkSetting, "Ydump-classes", "dir", "Dump the generated bytecode to .class files (useful for reflective compilation that utilizes in-memory classloaders).", default ="", deprecation =Some(Deprecation("Use -Xdump-classes instead.", "-Xdump-classes")))
474
+
valYdumpclasses:Setting[String] =StringSetting(ForkSetting, "Ydump-classes", "dir", "Dump the generated bytecode to .class files (useful for reflective compilation that utilizes in-memory classloaders).", default ="", deprecation =Deprecation.renamed("-Xdump-classes"))
476
475
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
477
-
valYjarCompressionLevel:Setting[Int] =IntChoiceSetting(ForkSetting, "Yjar-compression-level", "compression level to use when writing jar files", Deflater.DEFAULT_COMPRESSION to Deflater.BEST_COMPRESSION, Deflater.DEFAULT_COMPRESSION, deprecation =Some(Deprecation("Use -Xjar-compression-level instead.", "-Xjar-compression-level")))
476
+
valYjarCompressionLevel:Setting[Int] =IntChoiceSetting(ForkSetting, "Yjar-compression-level", "compression level to use when writing jar files", Deflater.DEFAULT_COMPRESSION to Deflater.BEST_COMPRESSION, Deflater.DEFAULT_COMPRESSION, deprecation =Deprecation.renamed("-Xjar-compression-level"))
478
477
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
479
-
valYkindProjector:Setting[String] =ChoiceSetting(ForkSetting, "Ykind-projector", "[underscores, enable, disable]", "Allow `*` as type lambda placeholder to be compatible with kind projector. When invoked as -Ykind-projector:underscores will repurpose `_` to be a type parameter placeholder, this will disable usage of underscore as a wildcard.", List("disable", "", "underscores"), "disable", legacyArgs =true, deprecation =Some(Deprecation("Use -Xkind-projector instead.", "-Xkind-projector")))
478
+
valYkindProjector:Setting[String] =ChoiceSetting(ForkSetting, "Ykind-projector", "[underscores, enable, disable]", "Allow `*` as type lambda placeholder to be compatible with kind projector. When invoked as -Ykind-projector:underscores will repurpose `_` to be a type parameter placeholder, this will disable usage of underscore as a wildcard.", List("disable", "", "underscores"), "disable", legacyArgs =true, deprecation =Deprecation.renamed("-Xkind-projector"))
480
479
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
valYreadComments:Setting[Boolean] =BooleanSetting(ForkSetting, "Yread-docs", "Read documentation from tasty.", deprecation =Deprecation.renamed("-Xread-docs"))
486
485
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
487
-
valYnoDecodeStacktraces:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-decode-stacktraces", "Show raw StackOverflow stacktraces, instead of decoding them into triggering operations.", deprecation =Some(Deprecation("Use -Xno-decode-stacktraces instead.", "-Xno-decode-stacktraces")))
486
+
valYnoDecodeStacktraces:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-decode-stacktraces", "Show raw StackOverflow stacktraces, instead of decoding them into triggering operations.", deprecation =Deprecation.renamed("-Xno-decode-stacktraces"))
488
487
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
489
-
valYnoEnrichErrorMessages:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-enrich-error-messages", "Show raw error messages, instead of enriching them with contextual information.", deprecation =Some(Deprecation("Use -Xno-enrich-error-messages instead.", "-Xno-enrich-error-messages")))
488
+
valYnoEnrichErrorMessages:Setting[Boolean] =BooleanSetting(ForkSetting, "Yno-enrich-error-messages", "Show raw error messages, instead of enriching them with contextual information.", deprecation =Deprecation.renamed("-Xno-enrich-error-messages"))
490
489
@deprecated(message ="Lifted to -X, Scheduled for removal in 3.6.0", since ="3.5.0")
491
-
valYdebugMacros:Setting[Boolean] =BooleanSetting(ForkSetting, "Ydebug-macros", "Show debug info when quote pattern match fails", deprecation =Some(Deprecation("Use -Xdebug-macros instead.", "-Xdebug-macros")))
490
+
valYdebugMacros:Setting[Boolean] =BooleanSetting(ForkSetting, "Ydebug-macros", "Show debug info when quote pattern match fails", deprecation =Deprecation.renamed("-Xdebug-macros"))
492
491
493
492
// @deprecated(message = "Lifted to -X, Scheduled for removal in 3.8.0", since = "3.7.0")
494
-
// val YjavaTasty: Setting[Boolean] = BooleanSetting(ForkSetting, "Yjava-tasty", "Pickler phase should compute TASTy for .java defined symbols for use by build tools", aliases = List("-Ypickle-java"), preferPrevious = true, deprecation = Some(Deprecation("Use -Xjava-tasty instead.", "-Xjava-tasty")))
493
+
// val YjavaTasty: Setting[Boolean] = BooleanSetting(ForkSetting, "Yjava-tasty", "Pickler phase should compute TASTy for .java defined symbols for use by build tools", aliases = List("-Ypickle-java"), preferPrevious = true, deprecation = Deprecation.lifted("-Xjava-tasty"))
495
494
// @deprecated(message = "Lifted to -X, Scheduled for removal in 3.8.0", since = "3.7.0")
496
-
// val YearlyTastyOutput: Setting[AbstractFile] = OutputSetting(ForkSetting, "Yearly-tasty-output", "directory|jar", "Destination to write generated .tasty files to for use in pipelined compilation.", NoAbstractFile, aliases = List("-Ypickle-write"), preferPrevious = true, deprecation = Some(Deprecation("Use -Xearly-tasty-output instead.", "-Xearly-tasty-output")))
495
+
// val YearlyTastyOutput: Setting[AbstractFile] = OutputSetting(ForkSetting, "Yearly-tasty-output", "directory|jar", "Destination to write generated .tasty files to for use in pipelined compilation.", NoAbstractFile, aliases = List("-Ypickle-write"), preferPrevious = true, deprecation = Deprecation.lifted("-Xearly-tasty-output"))
497
496
// @deprecated(message = "Lifted to -X, Scheduled for removal in 3.8.0", since = "3.7.0")
498
-
// val YallowOutlineFromTasty: Setting[Boolean] = BooleanSetting(ForkSetting, "Yallow-outline-from-tasty", "Allow outline TASTy to be loaded with the -from-tasty option.", deprecation = Some(Deprecation("Use -Xallow-outline-from-tasty instead.", "-Xallow-outline-from-tasty")))
497
+
// val YallowOutlineFromTasty: Setting[Boolean] = BooleanSetting(ForkSetting, "Yallow-outline-from-tasty", "Allow outline TASTy to be loaded with the -from-tasty option.", deprecation = Deprecation.lifted("-Xallow-outline-from-tasty"))
499
498
500
499
// Deprecated: lifted from -Y to -W
501
500
@deprecated(message ="Lifted to -W, Scheduled for removal in 3.6.0", since ="3.5.0")
valYcheckInit:Setting[Boolean] =BooleanSetting(ForkSetting, "Ysafe-init", "Ensure safe initialization of objects.", deprecation =Deprecation.renamed("-Wsafe-init"))
502
+
503
+
// Deprecated: Scheduled for removal
504
+
@deprecated(message ="Scheduled for removal in 3.6.0", since ="3.5.0")
505
+
valYoutputOnlyTasty:Setting[Boolean] =BooleanSetting(ForkSetting, "Youtput-only-tasty", "Used to only generate the TASTy file without the classfiles", deprecation =Deprecation.removed("3.6.0"))
0 commit comments