" Module : AKG-OBJECT.ST Date: 1-Nov-1990 Version: 1.02-00 Modified: 5-Nov-1990 Index: respondsTo: aSymbol Answer true if the receiver responds to the selector aSymbol, false otherwise. " !Object methodsFor: 'accessing the methodsDictionary'! respondsTo: aSymbol "Answer whether the method dictionary of the receiver's class or one of its superclasses contains the argument, aSymbol, as a message selector." ^self class canUnderstand: aSymbol !!