On Tue, Sep 13, 2011 at 10:52 AM, Alexandre Bergel
<alexandre.bergel@me.com> wrote:
Hi!
Apparently, the following method is abstract:
ArrayedCollection>>add: newObject
� � � �self shouldNotImplement
If I evaluate:
(ArrayedCollection>>#add:) isAbstract => true
This is not quite right. A method that is cancelled is not abstract.
I propose to change
CompiledMethod>>abstractMarkers
� � � �^ #(subclassResponsibility shouldNotImplement)
into
CompiledMethod>>abstractMarker
� � � �^ #shouldNotImplement
CompiledMethod>>abstractMarker
� � � �^ #subclassResponsibility