The Trunk: Kernel-fbs.798.mcz

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

The Trunk: Kernel-fbs.798.mcz

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

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

Name: Kernel-fbs.798
Author: fbs
Time: 5 August 2013, 7:52:49.59 pm
UUID: a3ca8b35-44c0-074b-b5f2-47bfc5e3965a
Ancestors: Kernel-nice.797

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

=============== Diff against Kernel-nice.797 ===============

Item was removed:
- ----- Method: OutOfMemory>>defaultAction (in category 'as yet unclassified') -----
- defaultAction
- Smalltalk signalLowSpace.!

Item was changed:
+ ----- Method: OutOfMemory>>isResumable (in category 'private') -----
- ----- Method: OutOfMemory>>isResumable (in category 'as yet unclassified') -----
  isResumable
  ^true!

Item was removed:
- ----- Method: UnhandledError>>defaultAction (in category '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.!