From 3f9f09d8433c1772c6260068ff50a6a9fbcc576e Mon Sep 17 00:00:00 2001 From: jordanmontt Date: Wed, 8 Jan 2025 13:39:20 +0100 Subject: [PATCH] Added back missing methods --- .../IllAnalyzer.extension.st | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/IllimaniProfiler-Tests/IllAnalyzer.extension.st diff --git a/src/IllimaniProfiler-Tests/IllAnalyzer.extension.st b/src/IllimaniProfiler-Tests/IllAnalyzer.extension.st new file mode 100644 index 0000000..9fdd606 --- /dev/null +++ b/src/IllimaniProfiler-Tests/IllAnalyzer.extension.st @@ -0,0 +1,16 @@ +Extension { #name : 'IllAnalyzer' } + +{ #category : '*IllimaniProfiler-Tests' } +IllAnalyzer >> endTime: anInteger [ + endTime := anInteger +] + +{ #category : '*IllimaniProfiler-Tests' } +IllAnalyzer >> objectAllocations: aCollection [ + objectAllocations := aCollection +] + +{ #category : '*IllimaniProfiler-Tests' } +IllAnalyzer >> startTime: anInteger [ + startTime := anInteger +]