Skip to content

Commit

Permalink
Merge pull request #15 from BastouP411/feature/debug
Browse files Browse the repository at this point in the history
Changed to proto object
  • Loading branch information
guillep authored Jun 23, 2023
2 parents 64de931 + 2ffb408 commit b10f57b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/MethodProxies/MpMethodProxy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This package is developed and maintained by S. Ducasse, G. Polito and P. Tesone,
"
Class {
#name : #MpMethodProxy,
#superclass : #Object,
#superclass : #ProtoObject,
#instVars : [
'selector',
'methodClass',
Expand Down Expand Up @@ -60,6 +60,15 @@ MpMethodProxy class >> uninstallAllWrappers [
self allSubInstancesDo: [ :inst | inst uninstall ]
]

{ #category : #comparing }
MpMethodProxy >> = anObject [
"Answer whether the receiver and the argument represent the same
object. If = is redefined in any subclass, consider also redefining the
message hash."

^ self == anObject
]

{ #category : #initialization }
MpMethodProxy >> class: aClass selector: aSymbol [

Expand Down

0 comments on commit b10f57b

Please sign in to comment.