The Trunk: Multilingual-pre.231.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-pre.231.mcz

commits-2
Patrick Rein uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-pre.231.mcz

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

Name: Multilingual-pre.231
Author: pre
Time: 7 December 2017, 12:14:14.664608 pm
UUID: 79a4b260-626e-6449-a8dc-b36f278e03bc
Ancestors: Multilingual-pre.230

Adds a NoConverterFound exception to deal with the (hopefully now rare) case that there is no converter for an encoding.

=============== Diff against Multilingual-pre.230 ===============

Item was added:
+ Error subclass: #NoConverterFound
+ instanceVariableNames: 'encoding'
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Multilingual-TextConversion'!

Item was added:
+ ----- Method: NoConverterFound class>>signalFor: (in category 'as yet unclassified') -----
+ signalFor: encodingName
+
+ self new
+ encoding: encodingName;
+ signal!

Item was added:
+ ----- Method: NoConverterFound>>encoding (in category 'accessing') -----
+ encoding
+
+ ^ encoding!

Item was added:
+ ----- Method: NoConverterFound>>encoding: (in category 'accessing') -----
+ encoding: anObject
+
+ encoding := anObject!