# HG changeset patch # User Claus Gittinger # Date 1422973295 -3600 # Node ID 0ac6e8f114164d090835ca3b7b16c84d9ef32c55 # Parent d2ca8339f9f7fb56a64369b2026a7821f6f5aee9 class: InstrumentingCompiler diff -r d2ca8339f9f7 -r 0ac6e8f11416 InstrumentingCompiler.st --- a/InstrumentingCompiler.st Mon Feb 02 22:26:24 2015 +0100 +++ b/InstrumentingCompiler.st Tue Feb 03 15:21:35 2015 +0100 @@ -1,5 +1,7 @@ "{ Package: 'stx:libcomp' }" +"{ NameSpace: Smalltalk }" + ByteCodeCompiler subclass:#InstrumentingCompiler instanceVariableNames:'method methodEntryInfo blockInvocationInfo' classVariableNames:'' @@ -882,7 +884,7 @@ invokingMethodsDo:aBlock infoPerSendingMethod isNil ifTrue:[ ^ self]. - ^ infoPerSendingMethod keysDo:aBlock. + infoPerSendingMethod keysDo:aBlock. ! numberOfInvocations @@ -1151,10 +1153,10 @@ !InstrumentingCompiler class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.33 2013-07-28 23:20:46 vrany Exp $' + ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.34 2015-02-03 14:21:35 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.33 2013-07-28 23:20:46 vrany Exp $' + ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.34 2015-02-03 14:21:35 cg Exp $' ! !