Tools__TagList.st
changeset 15072 113054b443df
parent 14881 6ac2b5c1ad1d
child 15168 89ee05d5d610
equal deleted inserted replaced
15071:86436f59d484 15072:113054b443df
  3170                                             pattern:nil
  3170                                             pattern:nil
  3171                                             type:nil
  3171                                             type:nil
  3172                                             lineNumber:lineNr).
  3172                                             lineNumber:lineNr).
  3173                         ].
  3173                         ].
  3174                     ].
  3174                     ].
       
  3175                 ] ifFalse:[
       
  3176                     ((l includesString:'=function') or:[(l includesString:'= function')]) ifTrue:[
       
  3177                         (showOnly isNil or:[showOnly == #functions]) ifTrue:[
       
  3178                             self hideFunctions ~~ true ifTrue:[
       
  3179                                 nm := l copyTo:((l indexOf:$=) - 1). nm := nm withoutSeparators.
       
  3180                                 targets add:(Tag::TFunction 
       
  3181                                                 label:nm 
       
  3182                                                 pattern:nil
       
  3183                                                 type:nil
       
  3184                                                 lineNumber:lineNr).
       
  3185                             ].
       
  3186                         ].
       
  3187                     ].
  3175                 ].
  3188                 ].
  3176             ]
  3189             ]
  3177         ].
  3190         ].
  3178         s close
  3191         s close
  3179     ].
  3192     ].
  3978 ! !
  3991 ! !
  3979 
  3992 
  3980 !TagList class methodsFor:'documentation'!
  3993 !TagList class methodsFor:'documentation'!
  3981 
  3994 
  3982 version
  3995 version
  3983     ^ '$Header: /cvs/stx/stx/libtool/Tools__TagList.st,v 1.65 2014-11-21 18:15:30 cg Exp $'
  3996     ^ '$Header: /cvs/stx/stx/libtool/Tools__TagList.st,v 1.66 2014-12-23 17:07:24 cg Exp $'
  3984 !
  3997 !
  3985 
  3998 
  3986 version_CVS
  3999 version_CVS
  3987     ^ '$Header: /cvs/stx/stx/libtool/Tools__TagList.st,v 1.65 2014-11-21 18:15:30 cg Exp $'
  4000     ^ '$Header: /cvs/stx/stx/libtool/Tools__TagList.st,v 1.66 2014-12-23 17:07:24 cg Exp $'
  3988 !
  4001 !
  3989 
  4002 
  3990 version_SVN
  4003 version_SVN
  3991     ^ '$Id: Tools__TagList.st,v 1.65 2014-11-21 18:15:30 cg Exp $'
  4004     ^ '$Id: Tools__TagList.st,v 1.66 2014-12-23 17:07:24 cg Exp $'
  3992 ! !
  4005 ! !
  3993 
  4006