comments
authorClaus Gittinger <cg@exept.de>
Wed, 07 Jul 2004 11:16:49 +0200
changeset 1530 ed400d564510
parent 1529 806c5c44cce8
child 1531 47f714bc1981
comments
Scanner.st
--- a/Scanner.st	Fri Jul 02 10:56:57 2004 +0200
+++ b/Scanner.st	Wed Jul 07 11:16:49 2004 +0200
@@ -348,13 +348,19 @@
 !
 
 allowSqueakExtensions
-    "return true, if {..} computed arrays are allowed"
+    "return true, if support for squeak extensions
+        computed arrays { .., }
+        c/java style arguments in message sends rec foo(arg1, ... argN)
+     is enabled."
 
     ^ AllowSqueakExtensions
 !
 
 allowSqueakExtensions:aBoolean
-    "this allows turning on/off support for computed arrays { .., } as in squeak.
+    "this allows turning on/off support for squeak extensions:
+        computed arrays { .., }
+        c/java style arguments in message sends rec foo(arg1, ... argN)
+
      If you want to fileIn Squeak classes, enable this with:
         Compiler allowSqueakComputedArrays:true"
 
@@ -732,10 +738,20 @@
 !
 
 allowSqueakExtensions
+    "return true, if support for squeak extensions
+        computed arrays { .., }
+        c/java style arguments in message sends rec foo(arg1, ... argN)
+     is enabled."
+
     ^ allowSqueakExtensions
 !
 
 allowSqueakExtensions:aBoolean
+    "this allows turning on/off support for squeak extensions:
+        computed arrays { .., }
+        c/java style arguments in message sends rec foo(arg1, ... argN)
+    "
+
     allowSqueakExtensions := aBoolean
 !
 
@@ -2700,7 +2716,7 @@
 !Scanner class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.190 2004-05-12 22:05:45 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.191 2004-07-07 09:16:49 cg Exp $'
 ! !
 
 Scanner initialize!