Marcel Taeumel uploaded a new version of Environments to project The Trunk:
http://source.squeak.org/trunk/Environments-jr.82.mcz==================== Summary ====================
Name: Environments-jr.82
Author: jr
Time: 10 April 2021, 12:34:34.717998 am
UUID: 2935eb63-046e-c344-8fba-771fb62fb5c2
Ancestors: Environments-tonyg.81
Sending resume: from defaultAction is erroneous in the ANSI standard.
In Squeak, unhandled exceptions are resumed with the answer to the defaultAction message.
=============== Diff against Environments-tonyg.81 ===============
Item was changed:
----- Method: EnvironmentRequest>>defaultAction (in category 'exceptionDescription') -----
defaultAction
| all environment |
all := Environment allInstances.
environment := UIManager default
chooseFrom: (all collect: [:ea | ea printString])
values: all.
+ ^ environment!
- self resume: environment.!