Marcel Taeumel uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-jr.720.mcz==================== Summary ====================
Name: Monticello-jr.720
Author: jr
Time: 8 June 2020, 10:04:25.843513 pm
UUID: 3f24029f-dae5-e345-9060-d078beba7fcd
Ancestors: Monticello-mt.719
Load class traits only after the corresponding instance traits were loaded.
The Scanner expression comes from MCTraitDefinition>>requirements.
=============== Diff against Monticello-mt.719 ===============
Item was changed:
----- Method: MCClassDefinition>>requirements (in category 'comparing') -----
requirements
^superclassName == #nil
ifTrue: [self poolDictionaries]
+ ifFalse: [{ superclassName }, self poolDictionaries,
+ (self hasTraitComposition
+ ifTrue: [(Scanner new scanTokens: self traitComposition) flattened select: [:each | each first isUppercase]]
+ ifFalse: [#()])].!
- ifFalse: [{ superclassName }, self poolDictionaries]!