The Trunk: Morphic-mt.1492.mcz

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

The Trunk: Morphic-mt.1492.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1492.mcz

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

Name: Morphic-mt.1492
Author: mt
Time: 11 July 2019, 10:57:02.027354 am
UUID: b06d3a7a-19d0-c243-9a9a-ad14c6cc7106
Ancestors: Morphic-mt.1491

Improves clean-up code of Etoys' standard scripting system.

=============== Diff against Morphic-mt.1491 ===============

Item was changed:
  ----- Method: StandardScriptingSystem class>>cleanUp: (in category 'class initialization') -----
  cleanUp: agressive
  "Clean up unreferenced players. If agressive, reinitialize and nuke players"
 
  self removeUnreferencedPlayers.
  agressive ifTrue:[
  References keys do: [:k | References removeKey: k].
+ ClassVarNamesInUse := nil.
  self initialize.
  ].!