If I have an inheritance tree, with INIT methods in each class, in which order will they be invoked when a class is cloned?
In particular, when using multiple inheritance
class foo { inherit A; inherit M; }
can I count i on A's INIT method being executed before M's? For some context, M is a mixin, that works by initializing fields of A. Inheritance tree may look something like
M A N | | | | B | | |\ / | C E \ / D
where N and M are two different mixins modifying the behaviour of A.