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
[](https://gitter.im/lampepfl/dotty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
If you know anything useful at all about Dotty, feel free to log this knowledge:
29
-
30
-
-[📜Log the Knowledge](https://github.com/lampepfl/dotty-knowledge/issues/new/choose)
31
-
-[🎓More about Logging the Knowledge](https://github.com/lampepfl/dotty-knowledge/blob/master/README.md)
32
-
33
-
In short, no need to make it pretty, particularly human-readable or give it a particular structure. Just dump the knowledge you have, and we'll take it from there.
34
-
35
24
License
36
25
=======
37
26
Dotty is licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
Copy file name to clipboardExpand all lines: compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+2
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ class ScalaSettings extends Settings.SettingGroup {
72
72
valXhelp:Setting[Boolean] =BooleanSetting("-X", "Print a synopsis of advanced options.")
73
73
valXnoForwarders:Setting[Boolean] =BooleanSetting("-Xno-forwarders", "Do not generate static forwarders in mirror classes.")
74
74
valXmaxInlines:Setting[Int] =IntSetting("-Xmax-inlines", "Maximal number of successive inlines.", 32)
75
+
valXmaxInlinedTrees:Setting[Int] =IntSetting("-Xmax-inlined-trees", "Maximal number of inlined trees.", 2_000_000)
75
76
valXmigration:Setting[ScalaVersion] =VersionSetting("-Xmigration", "Warn about constructs whose behavior may have changed since version.")
76
77
valXprint:Setting[List[String]] =PhasesSetting("-Xprint", "Print out program after")
77
78
valXprintTypes:Setting[Boolean] =BooleanSetting("-Xprint-types", "Print tree types (debugging option).")
@@ -87,6 +88,7 @@ class ScalaSettings extends Settings.SettingGroup {
87
88
valXfatalWarnings:Setting[Boolean] =BooleanSetting("-Xfatal-warnings", "Fail the compilation if there are any warnings.")
88
89
valXverifySignatures:Setting[Boolean] =BooleanSetting("-Xverify-signatures", "Verify generic signatures in generated bytecode.")
89
90
valXignoreScala2Macros:Setting[Boolean] =BooleanSetting("-Xignore-scala2-macros", "Ignore errors when compiling code that calls Scala2 macros, these will fail at runtime.")
91
+
valXimportSuggestionTimeout:Setting[Int] =IntSetting("-Ximport-suggestion-timeout", "Timeout (in ms) for searching for import suggestions when errors are reported.", 8000)
0 commit comments