Begin forwarded message:
From: commits@source.squeak.org Date: August 27, 2009 6:02:12 AM CEDT To: squeak-dev@lists.squeakfoundation.org Subject: [squeak-dev] The Trunk: Kernel-ar.230.mcz Reply-To: squeak-dev@lists.squeakfoundation.org
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!