Updates:
Status: Fixed
Comment #8 on issue 2611 by [email protected]: DNU when clicking on
active text in class comment
http://code.google.com/p/pharo/issues/detail?id=2611
Yes, all class comments are plain strings. Just checked using the following code:
ProtoObject allSubclasses do: [:class |
(class comment class = ByteString) ifFalse: [
[Transcript cr; show: class]
]]
