summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/GenericRunnerSettings.scala
blob: a7c5ce4ae1eef82a145e0ea8f7c65714a95cf940 (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
/* NSC -- new Scala compiler
 * Copyright 2006-2011 LAMP/EPFL
 * @author  Lex Spoon
 */


package scala.tools.nsc

class GenericRunnerSettings(error: String => Unit)
extends Settings(error) {
  val jarfile =
    StringSetting(
      "-jar",
      "jar",
      "Specify the jarfile in which to look for the main class",
      "")

  val howtorun =
    ChoiceSetting(
      "-howtorun",
      "how",
      "how to run the specified code",
      List("guess", "object", "script"),
      "guess")

  val loadfiles =
    MultiStringSetting(
      "-i",
      "file",
      "load a file (assumes the code is given interactively)")

  val execute =
    StringSetting(
      "-e",
      "string",
      "execute a single command",
      "")

  val savecompiled =
    BooleanSetting(
      "-savecompiled",
      "save the compiled script (assumes the code is a script)")

  val nocompdaemon =
    BooleanSetting(
      "-nocompdaemon",
      "do not use the fsc compilation daemon")
}