Wes Field
Wes Field

Reputation: 3441

Smalltalk: Checking if a method belongs to a class (or its inheritance hierarchy)

Is there a smalltalk message that will answer with a boolean value if a given method (example: passed with #aMethod) belongs to a given class (or its hierarchy)?

I want to say something like —

(self containsMethod:#aMethod) ifFalse:[...blah blah].

Obviously, containsMethod: is a placeholder for some message I hope exists. Oh, and self's superclass in this example is Object. Thanks!

Upvotes: 6

Views: 1681

Answers (1)

camillobruni
camillobruni

Reputation: 2318

You can use #respondsTo:

1 respondsTo: #+.

and there is the class-side counter part canUnderstand:

1 class canUnderstand: #+.
Integer canUnderstand: #+.

Upvotes: 15

Related Questions