[squeak-dev] The Trunk: Monticello-mt.725.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jun 20 11:23:56 UTC 2020


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].!



More information about the Squeak-dev mailing list