[squeak-dev] The Trunk: Kernel-ar.230.mcz

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

[squeak-dev] The Trunk: Kernel-ar.230.mcz

commits-2
Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ar.230.mcz

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

Name: Kernel-ar.230
Author: ar
Time: 26 August 2009, 9:01:37 am
UUID: d0759469-14fd-2c40-a5bd-90aab36cd9a5
Ancestors: Kernel-ar.229

Implementations for BlockClosure>>isValid and asMinimalRepresentation for compatibility of BlockClosure with the when:evaluate: protocol.

=============== Diff against Kernel-ar.229 ===============

Item was added:
+ ----- Method: BlockClosure>>isValid (in category 'events-support') -----
+ isValid
+ "For use in the when:evaluate: protocol, i.e.,
+ foo when: #bar evaluate:[self handleBar].
+ Return true."
+ ^true!

Item was added:
+ ----- Method: BlockClosure>>asMinimalRepresentation (in category 'events-support') -----
+ asMinimalRepresentation
+ "For use in the when:evaluate: protocol, i.e.,
+ foo when: #bar evaluate:[self handleBar].
+ Return the receiver."
+ ^true!