Tools__TagList.st
changeset 15785 e14b50727952
parent 15771 46fa8e48982e
child 15787 7b974ea37d2f
child 15851 16cba5e7ac67
equal deleted inserted replaced
15783:9f1f7f61ddcd 15785:e14b50727952
  2188 
  2188 
  2189 tagForFunction:functionName 
  2189 tagForFunction:functionName 
  2190     ^ rawList 
  2190     ^ rawList 
  2191         detect:[:tag |
  2191         detect:[:tag |
  2192             tag isFunctionTag and:[ tag label = functionName ]
  2192             tag isFunctionTag and:[ tag label = functionName ]
       
  2193         ]
       
  2194         ifNone:nil
       
  2195 !
       
  2196 
       
  2197 tagForMacro:macroName 
       
  2198     ^ rawList 
       
  2199         detect:[:tag |
       
  2200             tag isMacroTag and:[ tag label = macroName ]
  2193         ]
  2201         ]
  2194         ifNone:nil
  2202         ifNone:nil
  2195 !
  2203 !
  2196 
  2204 
  2197 tagForType:typeName 
  2205 tagForType:typeName