aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-01-03 16:23:56 +0100
committerFelix Mulder <felix.mulder@gmail.com>2017-01-31 14:29:15 +0100
commit302126067d6b05b26c7f2fffe7fda5d058b32b33 (patch)
treecd086eefe7d53186179f5cacb75511b01418fc85 /compiler
parentd2bf0b1443c094dba2e86d839bb8a1b8b9336eae (diff)
downloaddotty-302126067d6b05b26c7f2fffe7fda5d058b32b33.tar.gz
dotty-302126067d6b05b26c7f2fffe7fda5d058b32b33.tar.bz2
dotty-302126067d6b05b26c7f2fffe7fda5d058b32b33.zip
Add markdown parsing to dottydoc
Diffstat (limited to 'compiler')
-rw-r--r--compiler/src/dotty/tools/dotc/config/ScalaSettings.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
index 21a6c1165..fa4f61fe4 100644
--- a/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+++ b/compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
@@ -101,6 +101,7 @@ class ScalaSettings extends Settings.SettingGroup {
val XoldPatmat = BooleanSetting("-Xoldpatmat", "Use the pre-2.10 pattern matcher. Otherwise, the 'virtualizing' pattern matcher is used in 2.10.")
val XnoPatmatAnalysis = BooleanSetting("-Xno-patmat-analysis", "Don't perform exhaustivity/unreachability analysis. Also, ignore @switch annotation.")
val XfullLubs = BooleanSetting("-Xfull-lubs", "Retains pre 2.10 behavior of less aggressive truncation of least upper bounds.")
+ val wikiSyntax = BooleanSetting("-Xwiki-syntax", "Retains the Scala2 behavior of using Wiki Syntax in Scaladoc")
/** -Y "Private" settings
*/