Properties are not saved with monticello, though. They are like method properties. So one would
need to build something on top...
I don't know about MC model, but maybe extending MC to support properies/annotations could be a path?
Another idea would be to make a subclass of InstanceVariableSlot that stores the note in a property but
it is actually part of the slot definition:
Object subclass: #Point
slots: { #x => InstanceVariableWithNote note: ���this is useless���.
#y }
classVariables: { }
category: 'Kernel-BasicObjects'
As the note is part of the slot definition, it would be saved in Monticello.
It could be silly question but most of the time I wish to annotate while debugging, using that option would affect my debugged objec state?