checkin from browser
authorClaus Gittinger <cg@exept.de>
Thu, 08 Jul 1999 19:00:43 +0200
changeset 896 8d8c4bcca4b8
parent 895 0d44de8940c8
child 897 346df366b4d5
checkin from browser
Scanner.st
--- a/Scanner.st	Thu Jul 08 17:46:29 1999 +0200
+++ b/Scanner.st	Thu Jul 08 19:00:43 1999 +0200
@@ -24,7 +24,7 @@
 		WarnSTXSpecials WarnOldStyleAssignment WarnUnderscoreInIdentifier
 		WarnCommonMistakes WarnPossibleIncompatibilities
 		WarnDollarInIdentifier AllowDollarInIdentifier
-		EmptySourceNotificationSignal AllowSqueakComputedArrays'
+		EmptySourceNotificationSignal AllowSqueakExtensions'
 	poolDictionaries:''
 	category:'System-Compiler'
 !
@@ -119,7 +119,7 @@
     #( $; $. $( $) $[ $] "$!!" $^ $| $_ ) do:[:ch |
         ActionArray at:(ch asciiValue) put:block
     ].
-    AllowSqueakComputedArrays ifTrue:[
+    AllowSqueakExtensions ifTrue:[
         ActionArray at:${ asciiValue put:block.
         ActionArray at:$} asciiValue put:block.
     ].
@@ -202,7 +202,7 @@
     WarnPossibleIncompatibilities := false.
     AllowUnderscoreInIdentifier := false.
     AllowDollarInIdentifier := false.
-    AllowSqueakComputedArrays := false.
+    AllowSqueakExtensions := false.
 
     "
      self initialize
@@ -244,7 +244,7 @@
 allowSqueakExtensions
     "return true, if {..} computed arrays are allowed"
 
-    ^ AllowSqueakComputedArrays
+    ^ AllowSqueakExtensions
 !
 
 allowSqueakExtensions:aBoolean
@@ -252,7 +252,7 @@
      If you want to fileIn Squeak classes, enable this with:
         Compiler allowSqueakComputedArrays:true"
 
-    AllowSqueakComputedArrays := aBoolean.
+    AllowSqueakExtensions := aBoolean.
     self setupActions
 
     "
@@ -1956,6 +1956,6 @@
 !Scanner class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.100 1999-07-08 15:46:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.101 1999-07-08 17:00:43 cg Exp $'
 ! !
 Scanner initialize!