ParserFlags.st
changeset 1940 72cc74daf8fc
parent 1902 0c4dbe296819
child 1947 a5429732842a
--- a/ParserFlags.st	Tue Nov 07 12:56:31 2006 +0100
+++ b/ParserFlags.st	Tue Nov 07 12:56:50 2006 +0100
@@ -10,7 +10,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libcomp' }"
 
 Object subclass:#ParserFlags
@@ -287,6 +286,13 @@
 
 stcKeepCIntermediate:something 
     STCKeepCIntermediate := something.
+
+    "
+     STCKeepCIntermediate := true.
+     STCKeepCIntermediate := false.
+    "
+
+    "Modified: / 07-11-2006 / 10:58:42 / cg"
 !
 
 stcKeepOIntermediate
@@ -303,6 +309,13 @@
 
 stcKeepSTIntermediate:something 
     STCKeepSTIntermediate := something.
+
+    "
+     STCKeepSTIntermediate := true.
+     STCKeepSTIntermediate := false.
+    "
+
+    "Modified: / 07-11-2006 / 10:58:54 / cg"
 !
 
 stcModulePath
@@ -1669,7 +1682,7 @@
 !ParserFlags class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.32 2006-09-05 10:55:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.33 2006-11-07 11:56:50 cg Exp $'
 ! !
 
 ParserFlags initialize!