[squeak-dev] The Inbox: System-ct.1130.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 16 10:47:56 UTC 2019


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1130.mcz

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

Name: System-ct.1130
Author: ct
Time: 16 December 2019, 11:47:48.052097 am
UUID: c95fc53c-0884-fd40-b4ef-85cb5e62ffee
Ancestors: System-ct.1129

Add convenience method for error recursion flag

=============== Diff against System-ct.1129 ===============

Item was added:
+ ----- Method: Process>>setErrorRecursionFlagDuring: (in category '*System-debugging support') -----
+ setErrorRecursionFlagDuring: aBlock
+ 
+ 	self setErrorRecursionFlag.
+ 	^ aBlock ensure: [
+ 		self clearErrorRecursionFlag]!



More information about the Squeak-dev mailing list