+100 :-]

Am 01.12.2023 21:05:57 schrieb Thiede, Christoph <christoph.thiede@student.hpi.uni-potsdam.de>:


Von: commits@source.squeak.org <commits@source.squeak.org>
Gesendet: Freitag, 1. Dezember 2023 21:01 Uhr
An: squeak-dev@lists.squeakfoundation.org <squeak-dev@lists.squeakfoundation.org>
Betreff: [squeak-dev] The Inbox: Morphic-ct.2145.mcz
 
Christoph Thiede uploaded a new version of Morphic to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.2145.mcz

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

Name: Morphic-ct.2145
Author: ct
Time: 1 December 2023, 9:00:59.264752 pm
UUID: 2cb1f9a9-0aad-eb44-bde5-90138c603659
Ancestors: Morphic-ct.2144

Proposal: Makes the code point and Unicode category of characters explorable in explorers, analogously to different representations of numbers.

=============== Diff against Morphic-ct.2144 ===============

Item was added:
+ ----- Method: Character>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+
+        ^ {ObjectExplorerWrapper
+                with: self codePoint
+                name: 'code point'
+                model: self.
+        ObjectExplorerWrapper
+                with: (Unicode generalCategoryLabelOf: self codePoint)
+                name: 'category'
+                model: self}!

Item was added:
+ ----- Method: Character>>hasContentsInExplorer (in category '*Morphic-Explorer') -----
+ hasContentsInExplorer
+
+        ^ true!