After using DynamicComposableModel and editing my method in debugger, my Pharo 6.1 image has reached this state:
Instance of SpecLayout did not understand #visibleSlots
and
Instance of SpecLayout did not understand #instVarNames
. I cannot "File Out" my code because of these errors. I cannot even browse my class, which is actually called "UIVidya" and should be defined by
ComposableModel subclass: #UIVidya
instanceVariableNames: 'vidya listE editE tabmgr'
classVariableNames: ''
poolDictionaries: ''
category: 'vkVidya'!
. In the broken image, UIVidya classLayout
returns SpecLayout. In a healthy image, UIVidya classLayout
returns FixedLayout. I did not make this change on purpose and do not even know how it happened. Can I heal my broken Pharo image in-place, without abandoning the last changes?