Skip to content

Commit d6fe62e

Browse files
committed
Specialize before handler
1 parent eab5035 commit d6fe62e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/MethodProxiesExamples/MpCountingHandler.class.st

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ MpCountingHandler >> beforeExecutionWithReceiver: anObject arguments: anArrayOfO
1717
self count: self count + 1
1818
]
1919

20+
{ #category : 'evaluating' }
21+
MpCountingHandler >> beforeExecutionWithReceiver: anObject with: argument [
22+
23+
self count: self count + 1
24+
]
25+
2026
{ #category : 'accessing' }
2127
MpCountingHandler >> count [
2228

0 commit comments

Comments
 (0)