Tools__MethodCategoryList.st
changeset 15074 16fed0c256f1
parent 14863 792c2e1186d3
child 15118 1130376cb41f
equal deleted inserted replaced
15073:f7104d787a17 15074:16fed0c256f1
  1373                     ]
  1373                     ]
  1374                 ].
  1374                 ].
  1375             ].
  1375             ].
  1376 
  1376 
  1377             showCoverageInformation ifTrue:[
  1377             showCoverageInformation ifTrue:[
  1378                 mthd isInstrumented ifTrue:[
  1378                 mthd category = 'documentation' ifFalse:[
  1379                     mthd category = 'documentation' ifFalse:[
  1379                     mthd isInstrumented ifTrue:[
  1380                         itemsWithInstrumentedMethods add:mCategory.
  1380                         itemsWithInstrumentedMethods add:mCategory.
  1381                         mthd hasBeenCalled ifTrue:[
  1381                         mthd hasBeenCalled ifTrue:[
  1382                             itemsWithCalledMethods add:mCategory.
  1382                             itemsWithCalledMethods add:mCategory.
  1383                             mthd haveAllBlocksBeenExecuted ifTrue:[
  1383                             mthd haveAllBlocksBeenExecuted ifTrue:[
  1384                                 itemsWithFullyCoveredMethods add:mCategory.
  1384                                 itemsWithFullyCoveredMethods add:mCategory.
  1389                             ].
  1389                             ].
  1390                         ] ifFalse:[
  1390                         ] ifFalse:[
  1391                             itemsWithUncalledMethods add:mCategory.
  1391                             itemsWithUncalledMethods add:mCategory.
  1392                             numUncovered := numUncovered + 1.
  1392                             numUncovered := numUncovered + 1.
  1393                         ].
  1393                         ].
       
  1394                     ] ifFalse:[
       
  1395                         numNotInstrumented := numNotInstrumented + 1.
  1394                     ].
  1396                     ].
  1395                 ] ifFalse:[
       
  1396                     numNotInstrumented := numNotInstrumented + 1.
       
  1397                 ].
  1397                 ].
  1398             ].
  1398             ].
  1399             (changeSet includesChangeForClass:eachClass selector:mSelector) ifTrue:[
  1399             (changeSet includesChangeForClass:eachClass selector:mSelector) ifTrue:[
  1400                 (packageFilter notNil 
  1400                 (packageFilter notNil 
  1401                 and:[ (packageFilter includes:mPackage) not])
  1401                 and:[ (packageFilter includes:mPackage) not])
  2121 ! !
  2121 ! !
  2122 
  2122 
  2123 !MethodCategoryList class methodsFor:'documentation'!
  2123 !MethodCategoryList class methodsFor:'documentation'!
  2124 
  2124 
  2125 version
  2125 version
  2126     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.103 2014-11-19 21:41:36 cg Exp $'
  2126     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.104 2014-12-24 12:51:10 cg Exp $'
  2127 !
  2127 !
  2128 
  2128 
  2129 version_CVS
  2129 version_CVS
  2130     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.103 2014-11-19 21:41:36 cg Exp $'
  2130     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.104 2014-12-24 12:51:10 cg Exp $'
  2131 ! !
  2131 ! !
  2132 
  2132 
  2133 
  2133 
  2134 MethodCategoryList initialize!
  2134 MethodCategoryList initialize!
  2135 MethodCategoryList::CachedMethodInfo initialize!
  2135 MethodCategoryList::CachedMethodInfo initialize!