File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
src/compiler/scala/tools/cmd/gen Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ object Codegen {
2323 return println (CodegenSpec .helpMsg)
2424
2525 val out = outDir getOrElse { return println(" --out is required." ) }
26- val all = genall || ( ! anyvals && ! products)
26+ val all = genall || ! anyvals
2727
2828 echo(" Generating sources into " + out)
2929
Original file line number Diff line number Diff line change @@ -14,13 +14,9 @@ trait CodegenSpec extends Spec with Meta.StdOpts with Interpolation {
1414
1515 help(" Usage: codegen [<options>]" )
1616
17- // val inDir = "in" / "directory containing templates" --^ ExistingDir
1817 val outDir = " out" / " directory for generated files" --^ ExistingDir
19- // val install = "install" / "write source files directly to src/library/scala"
2018 val anyvals = " anyvals" / " generate sources for AnyVal types" --?
21- val products = " products" / " generate sources for ProductN, FunctionN, etc." --?
2219 val genall = " all" / " generate sources for everything" --?
23- val stamp = " stamp" / " add a timestamp to the generated files" --?
2420}
2521
2622object CodegenSpec extends CodegenSpec with Reference {
You can’t perform that action at this time.
0 commit comments