SettingGroup
dotty.tools.dotc.config.Settings.SettingGroup
class SettingGroup
Attributes
- Graph
-
- Supertypes
- Known subtypes
-
class ScalaSettings
Members list
Value members
Concrete methods
def MultiChoiceHelpSetting(name: String, helpArg: String, descr: String, choices: List[ChoiceWithHelp[String]], default: List[ChoiceWithHelp[String]], aliases: List[String]): Setting[List[ChoiceWithHelp[String]]]
def OutputSetting(name: String, helpArg: String, descr: String, default: AbstractFile): Setting[AbstractFile]
def UncompleteMultiChoiceHelpSetting(name: String, helpArg: String, descr: String, choices: List[ChoiceWithHelp[String]], default: List[ChoiceWithHelp[String]], aliases: List[String]): Setting[List[ChoiceWithHelp[String]]]
final def processArguments(state: ArgsSummary, processAll: Boolean, skipped: List[String]): ArgsSummary
Iterates over the arguments applying them to settings where applicable. Then verifies setting dependencies are met.
Iterates over the arguments applying them to settings where applicable. Then verifies setting dependencies are met.
This takes a boolean indicating whether to keep processing if an argument is seen which is not a command line option. This is an expedience for the moment so that you can say
scalac -d /tmp foo.scala -optimise
while also allowing
scala Program opt opt
to get their arguments.
Attributes
def processArguments(arguments: List[String], processAll: Boolean, settingsState: SettingsState): ArgsSummary
In this article