summaryrefslogtreecommitdiff
path: root/src/manual
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-12-15 15:04:50 +0000
committermichelou <michelou@epfl.ch>2006-12-15 15:04:50 +0000
commit635b88be42124cf8afa450a32eda83a3698a44e2 (patch)
treecc41afae7daeae1bd30e5968b72e4e4afc8be68d /src/manual
parentdd230b0b1fbb3e21620774d377f09eeeae61ff13 (diff)
downloadscala-635b88be42124cf8afa450a32eda83a3698a44e2.tar.gz
scala-635b88be42124cf8afa450a32eda83a3698a44e2.tar.bz2
scala-635b88be42124cf8afa450a32eda83a3698a44e2.zip
added option 'unchecked' in Scalac Ant task and...
added option 'unchecked' in Scalac Ant task and man page
Diffstat (limited to 'src/manual')
-rw-r--r--src/manual/scala/man1/Command.scala4
-rw-r--r--src/manual/scala/man1/scalac.scala45
2 files changed, 26 insertions, 23 deletions
diff --git a/src/manual/scala/man1/Command.scala b/src/manual/scala/man1/Command.scala
index 7a5aeb23a3..847e3c6383 100644
--- a/src/manual/scala/man1/Command.scala
+++ b/src/manual/scala/man1/Command.scala
@@ -1,5 +1,5 @@
/* NSC -- new Scala compiler
- * Copyright 2005-2006 LAMP/EPFL
+ * Copyright 2005-2007 LAMP/EPFL
* @author Stephane Micheloud
*/
//$Id$
@@ -51,7 +51,7 @@ trait Command {
//private val df = new java.text.SimpleDateFormat("MMM d, yyyy")
//private val rightNow = new java.util.Date()
- def lastModified: String = "September 20, 2006" // df.format(rightNow)
+ def lastModified: String = "December 15, 2006" // df.format(rightNow)
def manpage: Document
}
diff --git a/src/manual/scala/man1/scalac.scala b/src/manual/scala/man1/scalac.scala
index eb54944371..eb19270f78 100644
--- a/src/manual/scala/man1/scalac.scala
+++ b/src/manual/scala/man1/scalac.scala
@@ -1,5 +1,5 @@
/* NSC -- new Scala compiler
- * Copyright 2005-2006 LAMP/EPFL
+ * Copyright 2005-2007 LAMP/EPFL
* @author Stephane Micheloud
*/
//$Id$
@@ -54,15 +54,9 @@ object scalac extends Command {
Section("Standard Options",
DefinitionList(
Definition(
- CmdOption("g"),
- "Generate debugging info"),
- Definition(
- CmdOption("g:none"),
- "Generate no debugging info"),
- Definition(
- CmdOption("g:{source,lines,vars,notc}"),
+ CmdOption("g:{none,source,lines,vars,notc}"),
SeqPara(
- "Generate only some debugging info.",
+ Mono("\"none\"") & " generates no debugging info,",
Mono("\"source\"") & " generates only the source file attribute,",
Mono("\"lines\"") & " generates source and line number information,",
Mono("\"vars\"") & " generates source, line number and local " &
@@ -73,6 +67,9 @@ object scalac extends Command {
CmdOption("nowarn"),
"Generate no warnings"),
Definition(
+ CmdOption("noassert"),
+ "Generate no assertions and assumptions"),
+ Definition(
CmdOption("verbose"),
"Output messages about what the compiler is doing"),
Definition(
@@ -101,14 +98,6 @@ object scalac extends Command {
CmdOption("d", Argument("directory")),
"Specify where to place generated class files."),
Definition(
- CmdOption("deprecation"),
- SeqPara(
- "Indicates whether source should be compiled with deprecation " &
- "information; defaults to " & Mono("off") & " (" &
- "accepted values are: " & Mono("on") & ", " & Mono("off") &
- ", " & Mono("yes") & " and " & Mono("no") & ")",
- "Available since Scala version 2.2.1")),
- Definition(
CmdOption("encoding", Argument("encoding")),
SeqPara(
"Specify character encoding used by source files.",
@@ -128,8 +117,19 @@ object scalac extends Command {
CmdOption("migrate"),
"Assist in migrating from Scala version 1.0."),
Definition(
- CmdOption("statistics"),
- "Print compiler statistics."),
+ CmdOption("deprecation"),
+ SeqPara(
+ "Indicate whether source should be compiled with deprecation " &
+ "information; defaults to " & Mono("off") & " (" &
+ "accepted values are: " & Mono("on") & ", " & Mono("off") &
+ ", " & Mono("yes") & " and " & Mono("no") & ")",
+ "Available since Scala version 2.2.1")),
+ Definition(
+ CmdOption("unchecked"),
+ SeqPara(
+ "Enable detailed unchecked warnings",
+ "Non variable type-arguments in type patterns are unchecked " &
+ "since they are eliminated by erasure")),
Definition(
CmdOption("resident"),
"Compiler stays resident, files to compile are read from standard " &
@@ -142,7 +142,7 @@ object scalac extends Command {
"Print a synopsis of standard options."),
Definition(
CmdOption("nouescape"),
- "Disables handling of " & BSlash & "u unicode escapes"))),
+ "Disable handling of " & BSlash & "u unicode escapes"))),
Section("Non-Standard Options",
DefinitionList(
@@ -176,6 +176,9 @@ object scalac extends Command {
CmdOption("debug"),
"Output debugging messages."),
Definition(
+ CmdOption("statistics"),
+ "Print compiler statistics."),
+ Definition(
CmdOption("explaintypes"),
"Explain type errors in more detail."),
Definition(
@@ -338,7 +341,7 @@ object scalac extends Command {
title = command
date = lastModified // e.g. "June 8, 2006"
author = "Stephane Micheloud"
- version = "0.3"
+ version = "0.4"
sections = List(
name,
synopsis,