checkin from browser
authorClaus Gittinger <cg@exept.de>
Thu, 08 Jul 1999 17:46:29 +0200
changeset 895 0d44de8940c8
parent 894 943b6d0d26b3
child 896 8d8c4bcca4b8
checkin from browser
Scanner.st
--- a/Scanner.st	Thu Jul 08 17:42:03 1999 +0200
+++ b/Scanner.st	Thu Jul 08 17:46:29 1999 +0200
@@ -241,13 +241,13 @@
     "Modified: 7.9.1997 / 01:39:30 / cg"
 !
 
-allowSqueakComputedArrays
+allowSqueakExtensions
     "return true, if {..} computed arrays are allowed"
 
     ^ AllowSqueakComputedArrays
 !
 
-allowSqueakComputedArrays:aBoolean
+allowSqueakExtensions:aBoolean
     "this allows turning on/off support for computed arrays { .., } as in squeak.
      If you want to fileIn Squeak classes, enable this with:
         Compiler allowSqueakComputedArrays:true"
@@ -256,8 +256,8 @@
     self setupActions
 
     "
-     self allowSqueakComputedArrays:true
-     self allowSqueakComputedArrays:false
+     self allowSqueakExtensions:true
+     self allowSqueakExtensions:false
     "
 !
 
@@ -1956,6 +1956,6 @@
 !Scanner class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.99 1999-07-08 15:22:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.100 1999-07-08 15:46:29 cg Exp $'
 ! !
 Scanner initialize!