The Trunk: EToys-fbs.96.mcz

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

The Trunk: EToys-fbs.96.mcz

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

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

Name: EToys-fbs.96
Author: fbs
Time: 21 May 2013, 10:46:21.31 pm
UUID: 39b35b9d-0a2e-4406-8e6d-20abed7ac872
Ancestors: EToys-bf.95

MethodReference new setStandardClass: foo methodSymbol: bar -> MethodReference class: foo selector: bar.

I can't get rid of that deletion from the commit, but it should be harmless: that class doesn't exist anymore.

=============== Diff against EToys-bf.95 ===============

Item was changed:
  ----- Method: Player class>>addMethodReferencesTo: (in category 'user-scripted subclasses') -----
  addMethodReferencesTo: aCollection
  "For each extant script in the receiver, add a MethodReference object"
 
 
  self scripts do:
  [:aScript | | sel |
  (sel := aScript selector) ifNotNil:
+ [aCollection add: (MethodReference class: self selector: sel)]]!
- [aCollection add: (MethodReference new setStandardClass: self methodSymbol: sel)]]!

Item was removed:
- ----- Method: ReleaseBuilderSqueakland>>buildInitialScreen (in category '*etoys') -----
- buildInitialScreen
- "ReleaseBuilderSqueakland new buildInitialScreen"
-
- "Work in progress.
- This assumes the Etoys support files are in place, from
- http://etoys.squeak.org/svn/trunk/Etoys/
- Or at least the Home.007.pr file.
- "
- [
- ProjectLoading loadFromImagePath: 'Home'.
- ] valueSupplyingAnswer: #('This project was created from a more recent version of Etoys' true).
- !