The Trunk: ShoutCore-fbs.39.mcz

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

The Trunk: ShoutCore-fbs.39.mcz

commits-2
Frank Shearar uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-fbs.39.mcz

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

Name: ShoutCore-fbs.39
Author: fbs
Time: 24 November 2013, 8:53:16.59 pm
UUID: e4750f39-8371-8443-be91-455bfdf4e494
Ancestors: ShoutCore-fbs.38

#hasBindingThatBeginsWith: belongs to Shout.

=============== Diff against ShoutCore-fbs.38 ===============

Item was added:
+ ----- Method: Environment>>hasBindingThatBeginsWith: (in category '*ShoutCore') -----
+ hasBindingThatBeginsWith: aString
+ references associationsDo:
+ [:ea | (ea key beginsWith: aString) ifTrue: [^ true]].
+ ^ false
+
+ !