[squeak-dev] The Trunk: Kernel-mt.1431.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 1 14:03:32 UTC 2021


Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1431.mcz

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

Name: Kernel-mt.1431
Author: mt
Time: 1 December 2021, 3:03:26.688361 pm
UUID: 8d2aa79a-524c-374e-92ca-e7a9b8e7988e
Ancestors: Kernel-pre.1430

Complements 60Deprecated-mt.98

=============== Diff against Kernel-pre.1430 ===============

Item was removed:
- Notification subclass: #ExceptionAboutToReturn
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Kernel-Exceptions-Kernel'!
- 
- !ExceptionAboutToReturn commentStamp: '<historical>' prior: 0!
- This class is private to the EHS implementation.  Its use allows for ensured execution to survive code such as:
- 
- [self doThis.
- ^nil]
- 	ensure: [self doThat]
- 
- Signaling or handling this exception is not recommended.  Not even slightly.!

Item was removed:
- ArithmeticError subclass: #NaNError
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Kernel-Numbers-Exceptions'!
- 
- !NaNError commentStamp: 'ar 12/14/2010 00:03' prior: 0!
- NaNError is signaled by various operations that would either result in or operate on an NaN input.!

Item was removed:
- ----- Method: NaNError>>isResumable (in category 'testing') -----
- isResumable
- 	"NaNError is always resumable"
- 	^true!

Item was removed:
- ----- Method: NaNError>>messageText (in category 'accessing') -----
- messageText
- 	"Return an exception's message text."
- 
- 	^messageText ifNil:['This operation would result in NaN ']!

Item was changed:
+ (PackageInfo named: 'Kernel') postscript: 'Smalltalk removeClassNamed: #ExceptionAboutToReturn.'!
- (PackageInfo named: 'Kernel') postscript: 'DebuggerMethodMap voidMapCache.
- Smalltalk garbageCollect.
- HashedCollection rehashAll'!



More information about the Squeak-dev mailing list