GemTalk / JadeiteForPharo

IDE for GemStone Smalltalk application development in Pharo using Rowan code management
MIT License
1 stars 0 forks source link

Handle inspection of LargeIntegers and Unicode strings #135

Open ericwinger opened 2 weeks ago

ericwinger commented 2 weeks ago

RSR, in its infinite wisdom, doesn't support LargeInteger or Unicode replication. This isn't generally a problem as rowan client services controls what values are passed back and forth. But it is a problem when inspecting. For now, display an alert if user tries to inspect an uninspectable object but we need a better solution. Probably other types of objects need handled, too.

To see the temporary solution do an ad-hoc inspect on:

(Array with: 'aa', (String with: (Character withValue: 353)), 'b')

Note that Associations aren't handled either but I built in a workaround in RCS.

ericwinger commented 1 day ago

Interval, too.