Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1101.mcz==================== Summary ====================
Name: Morphic-mt.1101
Author: mt
Time: 6 April 2016, 10:55:47.896095 am
UUID: 8f859759-097e-ec4c-80ce-4894b2ef62a7
Ancestors: Morphic-mt.1100
Adds #isMorphic as extension to Project.
=============== Diff against Morphic-mt.1100 ===============
Item was added:
+ ----- Method: Project>>isMorphic (in category '*Morphic-testing') -----
+ isMorphic
+ "Complexity is because #isMVC is lazily installed"
+ ^ world isInMemory
+ ifTrue: [world isMorph]
+ ifFalse: [(self projectParameters at: #isMVC ifAbsent: [false]) not]!