subclassResponsibility sender selector stuck even when subclasses have the method implemented.
I think the argument may cause this happen but is it?
and could anyone tell us why?
in abstract class we have this
fromString: aString
"init with a string"
^self subclassResponsibility
and I am running this:
unit := (Units new fromString: aString)
then error occurs.
In which Units is the abstract class.
Travis Griggs's current approach could remove the error yet
are there doubledispatch for the instance creation method?