The Trunk: System-fbs.580.mcz

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

The Trunk: System-fbs.580.mcz

commits-2
Frank Shearar uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-fbs.580.mcz

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

Name: System-fbs.580
Author: fbs
Time: 5 August 2013, 7:52:13.614 pm
UUID: 71897b9d-a78f-8f41-b538-3f7e28bd64bd
Ancestors: System-fbs.579

Split the remaining System-referencing Kernel exceptions such that the System references are added by the System package.

=============== Diff against System-fbs.579 ===============

Item was added:
+ ----- Method: OutOfMemory>>defaultAction (in category '*System-exceptionDescription') -----
+ defaultAction
+ Smalltalk signalLowSpace.!

Item was added:
+ ----- Method: UnhandledError>>defaultAction (in category '*System-priv handling') -----
+ defaultAction
+ "The current computation is terminated. The cause of the error should be logged or reported to the user. If the program is operating in an interactive debugging environment the computation should be suspended and the debugger activated."
+ ^ToolSet debugError: exception.!