The Trunk: Monticello-mt.725.mcz

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

The Trunk: Monticello-mt.725.mcz

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

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

Name: Monticello-mt.725
Author: mt
Time: 20 June 2020, 1:23:54.74166 pm
UUID: 88eef16e-bad7-ad47-b378-7e8f553438d6
Ancestors: Monticello-mt.724

Since Monticello does not care about the correct field compilation order, just print errors to the transcript. See #compileAllFields to understand what you should actually do.

=============== Diff against Monticello-mt.724 ===============

Item was changed:
  ----- Method: MCMethodDefinition>>postload (in category 'installing') -----
  postload
  self isInitializer
  ifTrue: [self actualClass theNonMetaClass initialize].
  self isExternalStructureFieldDefinition
+ ifTrue: [[self actualClass theNonMetaClass compileFields]
+ ifError: [:msg | Transcript showln: '[FFI] ', msg]].!
- ifTrue: [self actualClass theNonMetaClass compileFields].!