The Inbox: Monticello-jr.721.mcz

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

The Inbox: Monticello-jr.721.mcz

commits-2
A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-jr.721.mcz

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

Name: Monticello-jr.721
Author: jr
Time: 8 June 2020, 10:06:03.128513 pm
UUID: d9653e55-12d4-0e4e-8455-506eacc23d5f
Ancestors: Monticello-jr.720

Load class traits and scripts in the dynamically bound Environment, not always in the default Environment.

=============== Diff against Monticello-jr.720 ===============

Item was changed:
  ----- Method: MCClassTraitDefinition>>load (in category 'installing') -----
  load
+ Compiler evaluate: self definitionString environment: Environment current!
- Compiler evaluate: self definitionString!

Item was changed:
  ----- Method: MCScriptDefinition>>evaluate (in category 'installing') -----
  evaluate
+ Compiler evaluate: script environment: Environment current!
- Compiler evaluate: script!