All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.tools.cmd.gen.CodegenSpec.scala Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
/* NEST (New Scala Test)
 * Copyright 2007-2013 LAMP/EPFL
 * @author  Paul Phillips
 */

package scala.tools.cmd
package gen

import FromString.ExistingDir

trait CodegenSpec extends Spec with Meta.StdOpts with Interpolation {
  def referenceSpec       = CodegenSpec
  def programInfo         = Spec.Info("codegen", "", "scala.tools.cmd.gen.Codegen")

  help("Usage: codegen []")

  val outDir   = "out" / "directory for generated files" --^ ExistingDir
  val anyvals  = "anyvals" / "generate sources for AnyVal types" --?
  val genall   = "all" / "generate sources for everything" --?
}

object CodegenSpec extends CodegenSpec with Reference {
  type ThisCommandLine = CommandLine
  def creator(args: List[String]): ThisCommandLine = new CommandLine(CodegenSpec, args)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy