Skip to content

Instantly share code, notes, and snippets.

@tgck
Created March 16, 2013 13:28
Show Gist options
  • Save tgck/5176372 to your computer and use it in GitHub Desktop.
Save tgck/5176372 to your computer and use it in GitHub Desktop.
やりたいメソッドがどのクラスに含まれてるか調べるコード片@smalltalk
"名前に'something'を含むメソッドを取得する"
Object withAllSubclasses do:
[:clas | clas selectors do:
[:sel |
(sel asLowercase
includesSubString: 'something' )
ifTrue: [
Transcript
show: clas name;
show: ' ';
show: sel;
cr]]].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment