The Trunk: ShoutCore-cwp.40.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-cwp.40.mcz

commits-2
Colin Putney uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-cwp.40.mcz

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

Name: ShoutCore-cwp.40
Author: cwp
Time: 1 January 2014, 1:11:46.449 pm
UUID: 81b3e230-2e8a-42c5-9521-e54338fadb6f
Ancestors: ShoutCore-fbs.39

Rewrite environment import/export to be eager, rather than lazy. (step 2 of 3)

=============== Diff against ShoutCore-fbs.39 ===============

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