Tools__ProfilerInfoItem.st
branchjv
changeset 12431 9f0c59c742d5
parent 12401 4714b9640528
child 18532 cccb41254edf
equal deleted inserted replaced
12430:4579351ee2cb 12431:9f0c59c742d5
    62 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    62 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    63 OTHER DEALINGS IN THE SOFTWARE.
    63 OTHER DEALINGS IN THE SOFTWARE.
    64 "
    64 "
    65 ! !
    65 ! !
    66 
    66 
    67 
       
    68 !ProfilerInfoItem methodsFor:'accessing'!
    67 !ProfilerInfoItem methodsFor:'accessing'!
    69 
    68 
    70 isBlock
    69 isBlock
    71     ^ isBlock ? false
    70     ^ isBlock ? false
    72 
    71 
   171     ^self tally printString , '% '
   170     ^self tally printString , '% '
   172 
   171 
   173     "Created: / 01-12-2007 / 20:47:09 / janfrog"
   172     "Created: / 01-12-2007 / 20:47:09 / janfrog"
   174 ! !
   173 ! !
   175 
   174 
   176 
       
   177 !ProfilerInfoItem methodsFor:'accessing - private'!
   175 !ProfilerInfoItem methodsFor:'accessing - private'!
   178 
   176 
   179 setChildren: collection
   177 setChildren: collection
   180 
   178 
   181     children := collection.
   179     children := collection.
   182     children do:[:e|e parent:e]
   180     children do:[:e|e parent:e]
   183 
   181 
   184     "Created: / 01-12-2007 / 20:43:36 / janfrog"
   182     "Created: / 01-12-2007 / 20:43:36 / janfrog"
   185 ! !
   183 ! !
   186 
       
   187 
   184 
   188 !ProfilerInfoItem methodsFor:'comparing'!
   185 !ProfilerInfoItem methodsFor:'comparing'!
   189 
   186 
   190 = anotherMethodInfo
   187 = anotherMethodInfo
   191 
   188 
   201     ^self method hash bitXor: [self isBlock hash]
   198     ^self method hash bitXor: [self isBlock hash]
   202 
   199 
   203     "Created: / 01-12-2007 / 21:17:01 / janfrog"
   200     "Created: / 01-12-2007 / 21:17:01 / janfrog"
   204 ! !
   201 ! !
   205 
   202 
   206 
       
   207 !ProfilerInfoItem class methodsFor:'documentation'!
   203 !ProfilerInfoItem class methodsFor:'documentation'!
   208 
   204 
   209 version_CVS
   205 version_CVS
   210     ^ '$Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.5 2012-11-04 21:40:34 cg Exp $'
   206     ^ '$Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.5 2012-11-04 21:40:34 cg Exp $'
   211 !
   207 !
   212 
   208 
       
   209 version_HG
       
   210 
       
   211     ^ '$Changeset: <not expanded> $'
       
   212 !
       
   213 
   213 version_SVN
   214 version_SVN
   214     ^ '§Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 §'
   215     ^ '§Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 §'
   215 ! !
   216 ! !
   216 
   217