The Trunk: Chronology-Core-dtl.33.mcz

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

The Trunk: Chronology-Core-dtl.33.mcz

commits-2
David T. Lewis uploaded a new version of Chronology-Core to project The Trunk:
http://source.squeak.org/trunk/Chronology-Core-dtl.33.mcz

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

Name: Chronology-Core-dtl.33
Author: dtl
Time: 22 January 2019, 12:04:12.747583 pm
UUID: 002bc836-c58b-49e4-9a33-37d54449e32c
Ancestors: Chronology-Core-ul.23

Restore Duration>>wait which was introduced in  Chronology-Core-mt.11 and accidently removed in recent updates.

=============== Diff against Chronology-Core-ul.23 ===============

Item was added:
+ ----- Method: Duration>>wait (in category 'squeak protocol') -----
+ wait
+ "Convert this duration in a delay and wait once. Return the created delay so that the client can wait on it again if needed.
+
+ Do-it: 3 minutes wait"
+
+ | delay |
+ delay := self asDelay.
+ delay wait.
+ ^ delay!