ParserFlags.st
changeset 1902 0c4dbe296819
parent 1898 f1d3d58a0d63
child 1940 72cc74daf8fc
--- a/ParserFlags.st	Tue Sep 05 12:55:22 2006 +0200
+++ b/ParserFlags.st	Tue Sep 05 12:55:35 2006 +0200
@@ -758,10 +758,12 @@
      Examples are: expr or:expr2, where expr2 is not a block.
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnCommonMistakes:false
+        ParserFlags warnCommonMistakes:false
      in your 'private.rc' file"
 
     WarnCommonMistakes := aBoolean
+
+    "Modified: / 05-09-2006 / 11:46:26 / cg"
 !
 
 warnDollarInIdentifier
@@ -780,13 +782,13 @@
      Notice, that dollars are NEVER allowed as the first character in an identifier.
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnDollarInIdentifier:false
+        ParserFlags warnDollarInIdentifier:false
      in your 'private.rc' file"
 
     WarnDollarInIdentifier := aBoolean
 
-    "Created: 7.9.1997 / 01:37:42 / cg"
-    "Modified: 7.9.1997 / 01:40:02 / cg"
+    "Created: / 07-09-1997 / 01:37:42 / cg"
+    "Modified: / 05-09-2006 / 11:46:23 / cg"
 !
 
 warnHiddenVariables
@@ -825,10 +827,12 @@
     "this allows turning on/off warnings about underscore-assignment (pre ST-80v4 syntax).
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnOldStyleAssignment:false
+        ParserFlags warnOldStyleAssignment:false
      in your 'private.rc' file"
 
     WarnOldStyleAssignment := aBoolean
+
+    "Modified: / 05-09-2006 / 11:46:17 / cg"
 !
 
 warnPossibleIncompatibilities
@@ -845,12 +849,13 @@
      on or off.
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnPossibleIncompatibilities:false
+        ParserFlags warnPossibleIncompatibilities:false
      in your 'private.rc' file."
 
     WarnPossibleIncompatibilities := aBoolean
 
-    "Created: 23.5.1997 / 12:02:45 / cg"
+    "Created: / 23-05-1997 / 12:02:45 / cg"
+    "Modified: / 05-09-2006 / 11:46:14 / cg"
 !
 
 warnSTXSpecials
@@ -863,10 +868,12 @@
     "this allows turning on/off warnings about stx specials.
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnSTXSpecials:false
+        ParserFlags warnSTXSpecials:false
      in your 'private.rc' file"
 
     WarnSTXSpecials := aBoolean
+
+    "Modified: / 05-09-2006 / 11:46:11 / cg"
 !
 
 warnUnderscoreInIdentifier
@@ -882,12 +889,12 @@
      (i.e. VW releases 2.x).
      If you get bored by those warnings, turn them off by adding
      a line as:
-        Compiler warnUnderscoreInIdentifier:false
+        ParserFlags warnUnderscoreInIdentifier:false
      in your 'private.rc' file"
 
     WarnUnderscoreInIdentifier := aBoolean
 
-    "Modified: 7.9.1997 / 01:37:13 / cg"
+    "Modified: / 05-09-2006 / 11:46:08 / cg"
 !
 
 warnUnusedVars
@@ -911,12 +918,18 @@
 warnings:aBoolean
     "this allows turning on/off all warnings; the default is on.
      You can turn off warnings in your 'private.rc' file with
-         Compiler warnings:false
+         ParserFlags warnings:false
     "
 
     Warnings := aBoolean
 
-    "Modified: 23.5.1997 / 12:03:05 / cg"
+    "
+     ParserFlags warnings
+     ParserFlags warnings:true
+     ParserFlags warnings:false
+    "
+
+    "Modified: / 05-09-2006 / 11:46:47 / cg"
 ! !
 
 !ParserFlags class methodsFor:'class initialization'!
@@ -1656,7 +1669,7 @@
 !ParserFlags class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.31 2006-08-29 15:29:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.32 2006-09-05 10:55:35 cg Exp $'
 ! !
 
 ParserFlags initialize!