dolphinsmalltalk / Dolphin

Dolphin Smalltalk Core Image
MIT License
303 stars 58 forks source link

Image Stripping fails with MNU #lookup: #1095

Closed rko281 closed 3 years ago

rko281 commented 3 years ago

Image Stripping is failing in D7.1 with UndefinedObject does not understand #lookup: in ExternalStructure class>>canUnderstand:. This checks the class's template but the class's ability to instantiate this has already been removed in BasicImageStripper>>compileExternalStructuresNow:.

To reproduce try deploying the XmlPad app in D7.1.

Adding #canUnderstand:to the array of removed selectors in BasicImageStripper>>compileExternalStructuresNow: fixes this:

        self removeSelectors: #(#getFieldNames #canUnderstand:) of: ExternalStructure class
blairmcg commented 3 years ago

Fixed by #1096 in 1317c44