#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 16 Jan 2017 12:19:10 +0100
changeset 4089 3fa82c96b2e5
parent 4085 37418a44b701
child 4090 946442094574
#DOCUMENTATION by cg class: ParserFlags comment/format in: #stcKeepCIntermediate: #stcKeepOIntermediate: #stcKeepSTIntermediate: #stcModulePath:
ParserFlags.st
--- a/ParserFlags.st	Mon Jan 09 12:30:48 2017 +0100
+++ b/ParserFlags.st	Mon Jan 16 12:19:10 2017 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
  COPYRIGHT (c) 2005 by eXept Software AG
@@ -457,8 +455,8 @@
     "Modified: / 16-09-2011 / 19:56:18 / cg"
 !
 
-stcKeepCIntermediate:something
-    STCKeepCIntermediate := something.
+stcKeepCIntermediate:aBoolean
+    STCKeepCIntermediate := aBoolean.
 
     "
      STCKeepCIntermediate := true.
@@ -474,8 +472,13 @@
     "Modified: / 16-09-2011 / 19:56:49 / cg"
 !
 
-stcKeepOIntermediate:something
-    STCKeepOIntermediate := something.
+stcKeepOIntermediate:aBoolean
+    STCKeepOIntermediate := aBoolean.
+
+    "
+     STCKeepOIntermediate := true.
+     STCKeepOIntermediate := false.
+    "
 !
 
 stcKeepSTIntermediate
@@ -489,8 +492,8 @@
     "Modified: / 16-09-2011 / 19:57:17 / cg"
 !
 
-stcKeepSTIntermediate:something
-    STCKeepSTIntermediate := something.
+stcKeepSTIntermediate:aBoolean
+    STCKeepSTIntermediate := aBoolean.
 
     "
      STCKeepSTIntermediate := true.
@@ -515,12 +518,12 @@
     ^ UserPreferences current workspaceDirectory  / 'modules'     
 !
 
-stcModulePath:something
+stcModulePath:aPath
     "set the path to the directory, where temporary modules are created.
      Obsolete now, as this should not be set from the outside,
      but instead rely totally on the userPreferences."
 
-    STCModulePath := something.
+    STCModulePath := aPath.
 !
 
 stcPath
@@ -917,7 +920,7 @@
 !
 
 allowParagraphInIdentifier
-    "return true, if §-characters are allowed in identifiers (treated as letter)"
+    "return true, if §-characters are allowed in identifiers (treated as letter)"
 
     ^ AllowParagraphInIdentifier
 
@@ -925,7 +928,7 @@
 !
 
 allowParagraphInIdentifier:aBoolean
-    "this allows turning on/off §-characters in identifiers."
+    "this allows turning on/off §-characters in identifiers."
 
     AllowParagraphInIdentifier := aBoolean.
 
@@ -1468,7 +1471,7 @@
 !
 
 warnParagraphInIdentifier
-    "return true, if §-characters in identifiers are to be warned about"
+    "return true, if §-characters in identifiers are to be warned about"
 
     ^ Warnings and:[WarnParagraphInIdentifier]
 
@@ -1476,7 +1479,7 @@
 !
 
 warnParagraphInIdentifier:aBoolean
-    "this allows turning on/off warnings about §-characters in identifiers.
+    "this allows turning on/off warnings about §-characters in identifiers.
      You may find those warnings useful, to make certain that your code
      is portable to other Smalltalk versions, which do not allow this"