The Inbox: Compiler-cwp.236.mcz

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

The Inbox: Compiler-cwp.236.mcz

commits-2
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!