ParserFlags.st
changeset 2411 fb5d5d0cc373
parent 2410 69246f0c4e34
child 2465 76964184a7f8
--- a/ParserFlags.st	Sat Jul 17 14:42:26 2010 +0200
+++ b/ParserFlags.st	Sat Jul 17 14:45:44 2010 +0200
@@ -48,7 +48,7 @@
 		linkArgs linkSharedArgs linkCommand libPath searchedLibraries
 		warnAboutPeriodInSymbol allowPeriodInSymbol allowCaretAsBinop
 		allowUnicodeStrings allowUnicodeCharacters allowCharacterEscapes
-		allowStringEscapes warnAboutMissingMethodComment'
+		allowStringEscapes'
 	classVariableNames:'WarnST80Directives WarnUnusedVars WarnUndeclared
 		WarnAboutWrongVariableNames WarnAboutBadComments
 		WarnAboutVariableNameConventions WarnSTXSpecials
@@ -82,7 +82,7 @@
 		CCCompilationOptions CCPath LinkArgs LinkSharedArgs LinkCommand
 		LibPath SearchedLibraries MakeCommand AllowCaretAsBinop
 		AllowUnicodeStrings AllowUnicodeCharacters AllowCharacterEscapes
-		AllowStringEscapes WarnAboutMissingMethodComment'
+		AllowStringEscapes'
 	poolDictionaries:''
 	category:'System-Compiler'
 !
@@ -841,22 +841,6 @@
     WarnAboutBadComments := aBoolean
 !
 
-warnAboutMissingMethodComment
-    "controls enforcement of method comments"
-
-    ^ WarnAboutMissingMethodComment
-
-    "Created: / 17-07-2010 / 14:40:33 / cg"
-!
-
-warnAboutMissingMethodComment:aBoolean 
-    "controls enforcement of method comments"
-
-    WarnAboutMissingMethodComment := aBoolean
-
-    "Created: / 17-07-2010 / 14:41:02 / cg"
-!
-
 warnAboutNonLowercaseLocalVariableNames
     "controls generation of warning messages about wrong variable names"
     
@@ -1156,7 +1140,6 @@
     WarnAboutReferenceToPrivateClass := true.
     WarnAboutPossiblyUnimplementedSelectors := true.
     WarnAboutPeriodInSymbol := true.
-    WarnAboutMissingMethodComment := true.
 
     AllowReservedWordsAsSelectors := false.
     AllowUnderscoreInIdentifier := true.        "/ underscores in identifiers
@@ -1254,7 +1237,7 @@
     "
 
     "Modified: / 09-08-2006 / 18:47:18 / fm"
-    "Modified: / 17-07-2010 / 14:42:00 / cg"
+    "Modified: / 17-07-2010 / 14:45:19 / cg"
 ! !
 
 !ParserFlags methodsFor:'accessing-compilation control'!
@@ -1740,22 +1723,6 @@
     warnAboutBadComments := aBoolean.
 !
 
-warnAboutMissingMethodComment
-    "controls enforcement of method comments"
-
-    ^ warnAboutMissingMethodComment
-
-    "Created: / 17-07-2010 / 14:40:33 / cg"
-!
-
-warnAboutMissingMethodComment:aBoolean 
-    "controls enforcement of method comments"
-
-    warnAboutMissingMethodComment := aBoolean
-
-    "Created: / 17-07-2010 / 14:41:30 / cg"
-!
-
 warnAboutNonLowercaseLocalVariableNames
     ^ warnAboutNonLowercaseLocalVariableNames
 !
@@ -1972,7 +1939,6 @@
     warnAboutPossibleSTCCompilationProblems := WarnAboutPossibleSTCCompilationProblems.
     warnAboutPossiblyUnimplementedSelectors := WarnAboutPossiblyUnimplementedSelectors.
     warnAboutPeriodInSymbol := WarnAboutPeriodInSymbol.
-    warnAboutMissingMethodComment := WarnAboutMissingMethodComment.
 
     allowUnderscoreInIdentifier := AllowUnderscoreInIdentifier.
     allowDollarInIdentifier := AllowDollarInIdentifier.
@@ -2036,17 +2002,17 @@
      self new inspect.
     "
 
-    "Modified: / 17-07-2010 / 14:41:48 / cg"
+    "Modified: / 17-07-2010 / 14:44:56 / cg"
 ! !
 
 !ParserFlags class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.56 2010-07-17 12:42:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.57 2010-07-17 12:45:44 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.56 2010-07-17 12:42:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.57 2010-07-17 12:45:44 cg Exp $'
 ! !
 
 ParserFlags initialize!