The Trunk: Compiler-cwp.237.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-cwp.237.mcz

commits-2
Colin Putney uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-cwp.237.mcz

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

Name: Compiler-cwp.237
Author: cwp
Time: 22 October 2012, 12:41:37.581 am
UUID: 88c324fe-9302-4ec9-ba3c-beb6c3aae7d0
Ancestors: Compiler-eem.234, Compiler-cwp.235

Reinitialize String every time the #allowUnderscoreSelectors preference is changed, so that the Tokenish character map will be correct.

=============== 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!