Tools__MethodList.st
changeset 17784 ce86bb77b36f
parent 17782 ee0d1bfafb04
child 17788 be714dd49070
equal deleted inserted replaced
17783:678f472d5358 17784:ce86bb77b36f
  1212           or:[ nameFilter match:sel caseSensitive:false]
  1212           or:[ nameFilter match:sel caseSensitive:false]
  1213     ].
  1213     ].
  1214     nameFilter includesMatchCharacters ifTrue:[
  1214     nameFilter includesMatchCharacters ifTrue:[
  1215         ^ mthd source asCollectionOfWords contains:[:word | nameFilter match:word caseSensitive:false]
  1215         ^ mthd source asCollectionOfWords contains:[:word | nameFilter match:word caseSensitive:false]
  1216     ] ifFalse:[
  1216     ] ifFalse:[
  1217         ^ mthd source includesString:nameFilter
  1217         ^ mthd source includesString:nameFilter caseSensitive:false
  1218     ].
  1218     ].
  1219 
  1219 
  1220     "Created: / 25-11-2017 / 12:04:21 / cg"
  1220     "Created: / 25-11-2017 / 12:04:21 / cg"
       
  1221     "Modified: / 25-11-2017 / 13:21:08 / cg"
  1221 !
  1222 !
  1222 
  1223 
  1223 listOfMethodNames
  1224 listOfMethodNames
  1224     |methods entries selectorBag newNameList allClasses newClasses
  1225     |methods entries selectorBag newNameList allClasses newClasses
  1225      allCategories                 "allSelectors"
  1226      allCategories                 "allSelectors"