MethodFinderWindow.st
changeset 2165 a5ff995ed0d7
parent 2046 67bafd381aa6
child 2412 3e2395ff3b75
equal deleted inserted replaced
2164:3c5fe1d92046 2165:a5ff995ed0d7
   416 Add each argument string (key)and the evaluated version (value) to an Ordered Dictionary
   416 Add each argument string (key)and the evaluated version (value) to an Ordered Dictionary
   417 from each of the text editors.
   417 from each of the text editors.
   418 
   418 
   419 Return the OrderedDictionary with the expressions from all the text editors. "
   419 Return the OrderedDictionary with the expressions from all the text editors. "
   420 
   420 
   421      | tempArguments argCounter tempArgument1Editor tempArgument2Editor tempArgument3Editor tempArgument4Editor
   421      | tempArguments argCounter tempArgument1Editor tempArgument2Editor tempArgument3Editor
   422 associationKey associationValue|
   422 associationKey associationValue|
   423 
   423 
   424 argCounter:=0.
   424 argCounter:=0.
   425 
   425 
   426 tempArgument1Editor:= (self cleanInputs: argument1Editor contents).
   426 tempArgument1Editor:= (self cleanInputs: argument1Editor contents).
   899    " Matches the class of the receiver with all the elements in anOrderedCollection
   899    " Matches the class of the receiver with all the elements in anOrderedCollection
   900     (which are classes with selectors). If a match is found it is marked with an asterisk. 
   900     (which are classes with selectors). If a match is found it is marked with an asterisk. 
   901     The classes are then sorted so the the asterisk appears first. Return the 
   901     The classes are then sorted so the the asterisk appears first. Return the 
   902     markedClassList."
   902     markedClassList."
   903 
   903 
   904         | marker recClass unmarkedClassList firstPartOfSelector markedClassList|
   904         | marker recClass unmarkedClassList markedClassList|
   905 
   905 
   906         marker := self class markerForImplementingClass.
   906         marker := self class markerForImplementingClass.
   907 
   907 
   908         recClass := receiver value class.
   908         recClass := receiver value class.
   909         unmarkedClassList:=anOrderedCollection copy.
   909         unmarkedClassList:=anOrderedCollection copy.