-
-
Notifications
You must be signed in to change notification settings - Fork 392
Open
Labels
Milestone
Description
Did we change something around monticello because
When I load my version of microdown one class initialize method is not executed
How to reproduce
Metacello new
baseline: 'Foliage';
repository: 'github://Ducasse/Foliage:master/src';
onConflict: [ :ex | ex useIncoming ];
onUpgrade: [ :ex | ex useIncoming ];
load.
then load RawParagraphNestingSupport branch
it contains
initialize
...
self initializeRawParagraph
....
initializeRawParagraph
"self initializeRawParagraph"
HTMLTags := self htmlTags.
ThreeLettersHTMLTags := self threeLetterhtmlTags.
EndHTMLTags := self endHtmlTags.
and MicSharedPool EndHTMLTags is not initialized
while it should because it is invoked in the initialize class method.
S