[squeak-dev] The Inbox: Compiler-cwp.236.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Oct 22 06:50:15 UTC 2012


A new version of Compiler was added to project The Inbox:
http://source.squeak.org/inbox/Compiler-cwp.236.mcz

==================== Summary ====================

Name: Compiler-cwp.236
Author: cwp
Time: 21 October 2012, 11:50:01.857 pm
UUID: 14361ce2-1704-4dcf-8003-d6b20b5b8cab
Ancestors: Compiler-eem.234, Compiler-cwp.235

Reinitialize String character maps when the #allowUnderscoreSelectors preference changes.

=============== Diff against Compiler-eem.234 ===============

Item was removed:
- ----- Method: Parser>>allowUnderscoreSelectors (in category 'private') -----
- allowUnderscoreSelectors
- 	"Query class + preference"
- 	^encoder classEncoding allowUnderscoreSelectors
- 		ifNil:[super allowUnderscoreSelectors]!

Item was changed:
  ----- Method: Scanner class>>prefAllowUnderscoreSelectors: (in category 'preferences') -----
  prefAllowUnderscoreSelectors: aBool
  	"Accessor for the system-wide preference"
+ 	AllowUnderscoreSelectors := aBool.
+ 	
+ 	"Reinitialize String's tokenish character map"
+ 	String initialize!
- 	AllowUnderscoreSelectors := aBool!



More information about the Squeak-dev mailing list