The Inbox: System-ct.1130.mcz

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

The Inbox: System-ct.1130.mcz

commits-2
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]!