# HG changeset patch # User Claus Gittinger # Date 1089191809 -7200 # Node ID ed400d56451075871b4c6ac0e675f4e5b7e9657a # Parent 806c5c44cce81bdc8544583da6efd272fa73ae79 comments diff -r 806c5c44cce8 -r ed400d564510 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!