The Inbox: Environments-jr.82.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Environments-jr.82.mcz

commits-2
A new version of Environments was added to project The Inbox:
http://source.squeak.org/inbox/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.!