The Trunk: Multilingual-eem.245.mcz

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

The Trunk: Multilingual-eem.245.mcz

commits-2
Eliot Miranda uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-eem.245.mcz

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

Name: Multilingual-eem.245
Author: eem
Time: 8 October 2019, 1:04:09.208812 pm
UUID: 123a8426-f38b-4c92-b3a7-1cacd0e884a5
Ancestors: Multilingual-nice.244

Update the haskBlocks in the various tables implemented as PluggableDictionary integerDictionary instances.

=============== Diff against Multilingual-nice.244 ===============

Item was added:
+ ----- Method: Unicode class>>postRecompileAction (in category 'recompilation') -----
+ postRecompileAction
+ "ToUpper et al are PluggableDictionary integerDictionarys that reference blocks.
+ Reinitialize them to ensure blocks reference freshly recompiled methods.
+ Don't rebuild to avoid having to go to the internet; just slam in new hashBlocks."
+
+ {Compositions. Decompositions. ToCasefold. ToUpper. ToLower} do:
+ [:pluggableDictionary|
+ pluggableDictionary hashBlock: PluggableDictionary integerDictionary hashBlock]!