# HG changeset patch # User Claus Gittinger # Date 1500198743 -7200 # Node ID 4a36d84543d5a1c61e7c17f77e478dfba57af9d0 # Parent 86723ef64f2dd573fc7c56e00387c8cd47c9736a #REFACTORING by cg class: StandaloneStartup class changed: #handleCoverageMeasurementOptionsFromArguments: diff -r 86723ef64f2d -r 4a36d84543d5 StandaloneStartup.st --- a/StandaloneStartup.st Sun Jul 16 11:49:58 2017 +0200 +++ b/StandaloneStartup.st Sun Jul 16 11:52:23 2017 +0200 @@ -317,7 +317,7 @@ nMethodsInstrumented := 0. coverageAction := [:aMethod | - ((aMethod sendsSelector:#subclassResponsibility) not + (aMethod isSubclassResponsibility not and:[ aMethod hasPrimitiveCode not ]) ifTrue:[ Transcript show:'instrumenting '; showCR:aMethod. aMethod mclass recompile:aMethod selector usingCompilerClass:InstrumentingCompiler. @@ -372,7 +372,7 @@ ]. "Created: / 24-05-2011 / 16:30:54 / cg" - "Modified: / 05-02-2017 / 01:25:10 / cg" + "Modified: / 16-07-2017 / 11:32:45 / cg" ! ! !StandaloneStartup class methodsFor:'defaults'!