summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/settings/AdvancedScalaSettings.scala
blob: 0bec113743a5eb7939e5bd8fb64c1fd128fbfbc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* NSC -- new Scala compiler
 * Copyright 2005-2013 LAMP/EPFL
 * @author  Paul Phillips
 */

package scala.tools.nsc
package settings

trait AdvancedScalaSettings {
  self: AbsScalaSettings =>

  abstract class X extends SettingGroup("-X") {
    val assemextdirs: StringSetting
    val assemname: StringSetting
    val assempath: StringSetting
    val checkinit: BooleanSetting
    val disableassertions: BooleanSetting
    val elidebelow: IntSetting
    val experimental: BooleanSetting
    val future: BooleanSetting
    val generatephasegraph: StringSetting
    val logimplicits: BooleanSetting
    val mainClass: StringSetting
    val migration: BooleanSetting
    val noforwarders: BooleanSetting
    val nojline: BooleanSetting
    val nouescape: BooleanSetting
    val plugin: MultiStringSetting
    val plugindisable: MultiStringSetting
    val pluginlist: BooleanSetting
    val pluginrequire: MultiStringSetting
    val pluginsdir: StringSetting
    val print: PhasesSetting
    val printicode: BooleanSetting
    val printpos: BooleanSetting
    val printtypes: BooleanSetting
    val prompt: BooleanSetting
    val resident: BooleanSetting
    val script: StringSetting
    val showclass: StringSetting
    val showobject: StringSetting
    val showphases: BooleanSetting
    val sourcedir: StringSetting
    val sourcereader: StringSetting
  }
  // def Xexperimental = X.experimental
  // def Xmigration28 = X.migration
  // def Xnojline = X.nojline
  // def Xprint = X.print
  // def Xprintpos = X.printpos
  // def Xshowcls = X.showclass
  // def Xshowobj = X.showobject
  // def assemextdirs = X.assemextdirs
  // def assemname = X.assemname
  // def assemrefs = X.assempath
  // def checkInit = X.checkinit
  // def disable = X.plugindisable
  // def elideLevel = X.elidelevel
  // def future = X.future
  // def genPhaseGraph = X.generatephasegraph
  // def logimplicits = X.logimplicits
  // def noForwarders = X.noforwarders
  // def noassertions = X.disableassertions
  // def nouescape = X.nouescape
  // def plugin = X.plugin
  // def pluginsDir = X.pluginsdir
  // def printtypes = X.printtypes
  // def prompt = X.prompt
  // def require = X.require
  // def resident = X.resident
  // def script = X.script
  // def showPhases = X.showphases
  // def showPlugins = X.pluginlist
  // def sourceReader = X.sourcereader
  // def sourcedir = X.sourcedir
  // def writeICode = X.printicode
}